Skip to content

Commit 4d816e0

Browse files
committed
fix exports
1 parent 210a89c commit 4d816e0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/cubejs-client-core/src/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,11 @@ class CubeApi {
646646

647647
export default (apiToken: string | (() => Promise<string>), options: CubeApiOptions) => new CubeApi(apiToken, options);
648648

649-
export { CubeApi, HttpTransport, ResultSet, RequestError, Meta };
649+
export { CubeApi };
650+
export * from './Meta';
651+
export * from './RequestError';
652+
export * from './ResultSet';
653+
export * from './HttpTransport';
650654
export * from './utils';
651655
export * from './time';
652656
export * from './types';

0 commit comments

Comments
 (0)