UNPKG

openapi-ts-json-schema

Version:

Generate TypeScript-first JSON schemas from OpenAPI definitions

10 lines (9 loc) 252 B
/** * Replace id placeholders with their relevant $ref object */ export declare function replacePlaceholdersWithRefs({ schemaAsText, refMapper, }: { schemaAsText: string; refMapper: (input: { id: string; }) => string; }): string;