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) 226 B
import { type Command } from "commander"; export declare function withConfigOptions(program: Command): Command; export type WithConfigOptions<CustomOptions = {}> = { config?: string; dbUrl?: string; } & CustomOptions;