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) 298 B
import { type AppConfig, type AppPlugin } from "../.."; export type SyncConfigOptions = { enabled?: boolean; includeSecrets?: boolean; write: (config: AppConfig) => Promise<void>; }; export declare function syncConfig({ enabled, includeSecrets, write, }: SyncConfigOptions): AppPlugin;