/** * TypeScript declaration file generator — produces index.d.ts with the fly * resource classes (App, Machine, Volume) and their property-type classes. */ import type { FlyParseResult } from "../spec/parse.js"; import type { NamingStrategy } from "./naming.js"; /** * Generate the complete .d.ts file content. */ export declare function generateTypeScriptDeclarations(results: FlyParseResult[], naming: NamingStrategy): string; //# sourceMappingURL=generate-typescript.d.ts.map