UNPKG

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) 253 B
import { type AppPlugin, EntityTypescript } from "../.."; export type SyncTypesOptions = { enabled?: boolean; write: (et: EntityTypescript) => Promise<void>; }; export declare function syncTypes({ enabled, write }: SyncTypesOptions): AppPlugin;