Skip to content

Commit

Permalink
fix: Added missing imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
ShogunPanda committed Jan 31, 2023
1 parent 1c7ec53 commit 06f851b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
export { create } from "./methods/create.js";
export { insert, insertBatch, insertWithHooks } from "./methods/insert.js";
export * from "./methods/insert.js";
export { load } from "./methods/load.js";
export { remove } from "./methods/remove.js";
export { save } from "./methods/save.js";
export { search } from "./methods/search.js";
export * from "./methods/search.js";
export * from "./tokenizer/index.js";
export * from "./types.js";

0 comments on commit 06f851b

Please sign in to comment.