UNPKG

bknd

Version:

Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.

8 lines (7 loc) 304 B
import { type AppPlugin, EntityTypescript } from "../.."; export type SyncTypesOptions = { enabled?: boolean; includeFirstBoot?: boolean; write: (et: EntityTypescript) => Promise<void>; }; export declare function syncTypes({ enabled, includeFirstBoot, write, }: SyncTypesOptions): AppPlugin;