Skip to content

Commit 2fa3dce

Browse files
committed
refactor: export only structures and types
1 parent eb5fd54 commit 2fa3dce

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { assertString } from "./assertions/literal";
2-
import { ApplicationModule, UserModule } from "./modules";
2+
import { ApplicationsModule, UserModule } from "./modules";
33
import { APIService, GlobalCacheService } from "./services";
44
import { type ClientEvents, TypedEventEmitter } from "./types";
55

@@ -13,7 +13,7 @@ export class SquareCloudAPI extends TypedEventEmitter<ClientEvents> {
1313
public readonly api: APIService;
1414

1515
/** The applications module */
16-
public applications = new ApplicationModule(this);
16+
public applications = new ApplicationsModule(this);
1717
/** The users module */
1818
public users = new UserModule(this);
1919
/** The global cache service */
@@ -32,6 +32,5 @@ export class SquareCloudAPI extends TypedEventEmitter<ClientEvents> {
3232
}
3333
}
3434

35-
export * from "./services";
3635
export * from "./structures";
3736
export * from "./types";

0 commit comments

Comments
 (0)