fix: export of new files in index
This commit is contained in:
parent
eb5c3e0090
commit
6b6fe2a286
1 changed files with 9 additions and 14 deletions
23
src/index.ts
23
src/index.ts
|
@ -1,14 +1,9 @@
|
||||||
export { ApiClient } from './api/apiClient';
|
export * from './api/apiClient';
|
||||||
export { ApiHandler } from './api/apiHandler';
|
export * from './api/apiHandler';
|
||||||
export { Client } from './client/client';
|
export * from './api/apiHelper';
|
||||||
export { defaults } from './utils/defaults';
|
export * from './api/apiManager';
|
||||||
export {
|
export * from './client/client';
|
||||||
ApiMethods,
|
export * from './utils/defaults';
|
||||||
Builtin,
|
export * from './utils/sleep';
|
||||||
DeepRequired,
|
export * from './utils/snowflake';
|
||||||
IApiClientOptions,
|
export * from './utils/types';
|
||||||
IClientOptions,
|
|
||||||
IDefaultOptions,
|
|
||||||
IMakeRequestOptions,
|
|
||||||
Primitives,
|
|
||||||
} from './utils/types';
|
|
||||||
|
|
Reference in a new issue