/** * @feltdb/core - FeltDB Application-Facing API * * The primary interface for developers using FeltDB. * Provides a simple, state-first API for data persistence, * reactivity, and distributed operations. * * This is the Node entry point. It adds the runtimes and workspace tooling * that need Node built-ins on top of the shared surface in `index-core.ts`. * Browsers resolve `index.browser.ts` instead, through the package exports * map, so that a bare `fs` import never enters a browser module graph. */ export * from './index-core.js'; export * from './file-db.js'; /** * Development Workspace APIs * * Shared development state for coordinating Browser, IDE, and Agent clients. * The Node-only pieces (durable investigation store, supervisor, local * development authority, Git inspection) are available from this entry only. */ export * from './workspace/index.js'; //# sourceMappingURL=index.d.ts.map