wrekenfile-converter
Version:
Convert OpenAPI and Postman specs into Wrekenfiles, with chunking for vector database storage
12 lines • 540 B
TypeScript
import { type ConversionStats } from './utils/conversion-stats';
declare function generateWrekenfile(spec: any, baseDir: string): string;
/**
* Generate a Wrekenfile and return both the YAML string and conversion stats.
* Use this when you need visibility into what was converted and potential issues.
*/
declare function generateWrekenfileWithStats(spec: any, baseDir: string): {
yaml: string;
stats: ConversionStats;
};
export { generateWrekenfile, generateWrekenfileWithStats };
//# sourceMappingURL=openapi-to-wreken.d.ts.map