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 { ApiHandler } from './api/apiHandler';
|
||||
export { Client } from './client/client';
|
||||
export { defaults } from './utils/defaults';
|
||||
export {
|
||||
ApiMethods,
|
||||
Builtin,
|
||||
DeepRequired,
|
||||
IApiClientOptions,
|
||||
IClientOptions,
|
||||
IDefaultOptions,
|
||||
IMakeRequestOptions,
|
||||
Primitives,
|
||||
} from './utils/types';
|
||||
export * from './api/apiClient';
|
||||
export * from './api/apiHandler';
|
||||
export * from './api/apiHelper';
|
||||
export * from './api/apiManager';
|
||||
export * from './client/client';
|
||||
export * from './utils/defaults';
|
||||
export * from './utils/sleep';
|
||||
export * from './utils/snowflake';
|
||||
export * from './utils/types';
|
||||
|
|
Reference in a new issue