Skip to content

Commit

Permalink
feat(index): export Store and ObjectRepository
Browse files Browse the repository at this point in the history
  • Loading branch information
fmauNeko committed May 6, 2024
1 parent 0386dc7 commit 8b6e4e7
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
export * from './lib/core/backend';
export * from "./lib/core/backend";

export * from './lib/types';
export * from "./lib/types";

export * from './lib/core/plugin/pluginContext';
export * from "./lib/core/plugin/pluginContext";

export * from './lib/core/shared/sdk/embeddedSdk';
export * from "./lib/core/shared/sdk/embeddedSdk";

export * from './lib/api/request';
export * from "./lib/api/request";

export * from './lib/kerror/errors';
export * from "./lib/kerror/errors";

export * from './lib/util/mutex';
export * from "./lib/util/mutex";

export * from './lib/util/Inflector';
export * from "./lib/util/Inflector";

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

export * from 'kuzzle-sdk';
export * from "kuzzle-sdk";

export * from './lib/core/shared/KoncordeWrapper';
export * from "./lib/core/shared/KoncordeWrapper";

export * from "./lib/core/shared/ObjectRepository";

export * from "./lib/core/shared/store";

0 comments on commit 8b6e4e7

Please sign in to comment.