UNPKG

openapi-ts-json-schema

Version:

OpenAPI to JSON schema generator with TypeScript in mind

7 lines (6 loc) 283 B
/** * JSON.stringify replacer * Replace circular references with {} * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Cyclic_object_value#circular_references */ export declare function makeCircularRefReplacer(): (key: string, value: unknown) => unknown;