/** * TypeScript declaration file generator — produces index.d.ts with all * GitLab CI entity classes. */ import type { GitLabParseResult } from "./parse.js"; import type { NamingStrategy } from "./naming.js"; /** * Generate the complete .d.ts file content. */ export declare function generateTypeScriptDeclarations(results: GitLabParseResult[], naming: NamingStrategy): string; //# sourceMappingURL=generate-typescript.d.ts.map