bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
12 lines (11 loc) • 755 B
TypeScript
import { d1Sqlite, type D1ConnectionConfig } from "./connection/D1Connection";
export * from "./cloudflare-workers.adapter";
export { makeApp, getFresh } from "./modes/fresh";
export { getCached } from "./modes/cached";
export { DurableBkndApp, getDurable } from "./modes/durable";
export { d1Sqlite, type D1ConnectionConfig };
export { getBinding, getBindings, type BindingTypeMap, type GetBindingType, type BindingMap, } from "./bindings";
export { constants } from "./config";
export { StorageR2Adapter, registerMedia } from "./storage/StorageR2Adapter";
export { registries } from "../..";
export declare function d1<DB extends D1Database | D1DatabaseSession = D1Database>(config: D1ConnectionConfig<DB>): import("../..").GenericSqliteConnection<DB>;