bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
10 lines (9 loc) • 343 B
TypeScript
/**
* Vite plugin that provides Node.js filesystem access during development
* by injecting a polyfill into the SSR environment
*/
export declare function devFsVitePlugin({ verbose, configFile, }?: {
verbose?: boolean;
configFile?: string;
}): any;
export declare function devFsWrite(filename: string, data: string): Promise<void>;