packfs-core
Version:
Semantic filesystem operations for LLM agent frameworks with natural language understanding. See LLM_AGENT_GUIDE.md for copy-paste examples.
9 lines • 338 B
TypeScript
/**
* Storage backend implementations
*/
export { MemoryBackend } from './memory.js';
export { DiskBackend } from './disk.js';
export { RxDBBackend } from './rxdb.js';
export type { RxDBBackendOptions, FileDocument, RxDBDatabase } from './rxdb.js';
export type { BackendInterface } from './types.js';
//# sourceMappingURL=index.d.ts.map