mirror of
https://github.com/nvms/prsm.git
synced 2025-12-16 16:10:54 +00:00
7 lines
461 B
TypeScript
7 lines
461 B
TypeScript
export { type CollectionOptions, type QueryOptions, Collection } from "./collection";
|
|
export { type ShardOptions, ShardedCollection } from "./sharded_collection";
|
|
export { type AdapterConstructor, type AdapterConstructorOptions, type StorageAdapter } from "./adapter";
|
|
export { default as FSAdapter } from "./adapter/fs";
|
|
export { default as EncryptedFSAdapter } from "./adapter/enc_fs";
|
|
export { default as LocalStorageAdapter } from "./adapter/localStorage";
|