/** * Browser entry point for @feltdb/core. * * Selected by the `browser` condition in the package exports map, so a browser * application writing `import { createFeltDB } from '@feltdb/core'` gets a * module graph with no Node built-ins in it. * * The browser runtime itself has no Node dependencies, so it is imported * directly by `db.ts`. What this entry does is leave the file runtime out of * the graph, which is what makes `createFeltDB({ browser: true })` — and * therefore `db.transaction()` — reachable through the public package entry. */ export * from './index-core.js'; //# sourceMappingURL=index.browser.d.ts.map