We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 684c70e commit 624856eCopy full SHA for 624856e
packages/db/src/index.ts
@@ -10,6 +10,10 @@ export * from "./local-only"
10
export * from "./local-storage"
11
export * from "./errors"
12
13
+// Re-export IR types under their own namespace
14
+// because custom collections need access to the IR types
15
+import * as IR from "./query/ir.js"
16
+
17
// Index system exports
18
export * from "./indexes/base-index.js"
19
export * from "./indexes/btree-index.js"
@@ -18,3 +22,4 @@ export { type IndexOptions } from "./indexes/index-options.js"
22
23
// Re-export some stuff explicitly to ensure the type & value is exported
20
24
export type { Collection } from "./collection/index.js"
25
+export { IR }
0 commit comments