Skip to content

Commit 8b6e4e7

Browse files
committedMay 6, 2024··
feat(index): export Store and ObjectRepository
1 parent 0386dc7 commit 8b6e4e7

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed
 

‎index.ts

+15-11
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
1-
export * from './lib/core/backend';
1+
export * from "./lib/core/backend";
22

3-
export * from './lib/types';
3+
export * from "./lib/types";
44

5-
export * from './lib/core/plugin/pluginContext';
5+
export * from "./lib/core/plugin/pluginContext";
66

7-
export * from './lib/core/shared/sdk/embeddedSdk';
7+
export * from "./lib/core/shared/sdk/embeddedSdk";
88

9-
export * from './lib/api/request';
9+
export * from "./lib/api/request";
1010

11-
export * from './lib/kerror/errors';
11+
export * from "./lib/kerror/errors";
1212

13-
export * from './lib/util/mutex';
13+
export * from "./lib/util/mutex";
1414

15-
export * from './lib/util/Inflector';
15+
export * from "./lib/util/Inflector";
1616

17-
export { NameGenerator } from './lib/util/name-generator';
17+
export { NameGenerator } from "./lib/util/name-generator";
1818

19-
export * from 'kuzzle-sdk';
19+
export * from "kuzzle-sdk";
2020

21-
export * from './lib/core/shared/KoncordeWrapper';
21+
export * from "./lib/core/shared/KoncordeWrapper";
22+
23+
export * from "./lib/core/shared/ObjectRepository";
24+
25+
export * from "./lib/core/shared/store";

0 commit comments

Comments
 (0)
Please sign in to comment.