/** * The rest of a site scaffold's mechanical files: the adapter re-export, the manifest, the tsconfig. * * Same argument as `site-build.ts`. These three were five copies each whose only real difference was * which framework they name, and keeping five copies is how `.vercel` came to be excluded from four * tsconfigs and not the fifth. */ import { type FrameworkSpec } from "./frameworks.js"; /** * `framework.ts` - the one file every server entry imports the adapter from, which is what keeps the * entries themselves framework-agnostic and therefore shareable. */ export declare function renderFrameworkModule(framework: FrameworkSpec): string; export declare function renderPackageJson(framework: FrameworkSpec): string; export declare function renderTsconfig(framework: FrameworkSpec): string; //# sourceMappingURL=site-files.d.ts.map