bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
9 lines (8 loc) • 380 B
TypeScript
import { type AppPlugin, type MaybePromise, type ModuleConfigs } from "../..";
export type SyncConfigOptions = {
enabled?: boolean;
includeSecrets?: boolean;
includeFirstBoot?: boolean;
write: (config: ModuleConfigs) => MaybePromise<void>;
};
export declare function syncConfig({ enabled, includeSecrets, includeFirstBoot, write, }: SyncConfigOptions): AppPlugin;