bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
7 lines (6 loc) • 356 B
TypeScript
import type { Kysely, KyselyPlugin } from "kysely";
import { Connection, type DbFunctions, type FieldSpec, type SchemaResponse } from "../Connection";
export declare class SqliteConnection extends Connection {
constructor(kysely: Kysely<any>, fn?: Partial<DbFunctions>, plugins?: KyselyPlugin[]);
getFieldSchema(spec: FieldSpec): SchemaResponse;
}