bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
10 lines (9 loc) • 318 B
TypeScript
import { Connection, type FieldSpec, type SchemaResponse } from "./Connection";
export declare class DummyConnection extends Connection {
name: string;
protected readonly supported: {
batching: boolean;
};
constructor();
getFieldSchema(spec: FieldSpec, strict?: boolean): SchemaResponse;
}