import type { Bindings } from "../bindings.ts"; import { Website, type WebsiteProps } from "../website.ts"; export interface BunSPAProps extends WebsiteProps { /** * The path to the frontend entrypoints that bun should bundle for deployment & serve in dev mode. * These are usually html files. Glob patterns are supported. * Typically set to src/index.html */ frontend: string | string[]; outDir?: string; } export type BunSPA = Website & { apiUrl: string; }; export declare function BunSPA(id: string, props: BunSPAProps): Promise & { apiUrl: string; }>; //# sourceMappingURL=bun-spa.d.ts.map