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) 300 B
import { type AppPlugin } from "../.."; export type SyncSecretsOptions = { enabled?: boolean; includeFirstBoot?: boolean; write: (secrets: Record<string, any>) => Promise<void>; }; export declare function syncSecrets({ enabled, includeFirstBoot, write, }: SyncSecretsOptions): AppPlugin;