UNPKG

wrekenfile-converter

Version:

Convert OpenAPI and Postman specs into Wrekenfiles, with chunking for vector database storage

11 lines 464 B
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. */ declare function generateWrekenfileWithStats(spec: any, baseDir: string): { yaml: string; stats: ConversionStats; }; export { generateWrekenfile, generateWrekenfileWithStats }; //# sourceMappingURL=openapi-v2-to-wrekenfile.d.ts.map