UNPKG

openapi-ts-json-schema

Version:

OpenAPI to JSON schema generator with TypeScript in mind

11 lines (10 loc) 427 B
import type { SchemaMetaDataMap, SchemaPatcher, RefHandling, $idMapper } from '../types'; /** * Save TS JSON schema files with the expected naming conventions */ export declare function makeTsJsonSchemaFiles({ schemaMetaDataMap, refHandling, schemaPatcher, $idMapper, }: { schemaMetaDataMap: SchemaMetaDataMap; refHandling: RefHandling; schemaPatcher?: SchemaPatcher; $idMapper: $idMapper; }): Promise<void>;