UNPKG

openapi-ts-json-schema

Version:

Generate TypeScript-first JSON schemas from OpenAPI definitions

11 lines (10 loc) 419 B
import type { IdMapper, ModuleSystem, RefHandling, SchemaMetaDataMap } from '../types.js'; /** * Generate the file content of all expected JSON Schema files */ export declare function makeSchemaFileContents({ schemaMetaDataMap, refHandling, idMapper, moduleSystem, }: { schemaMetaDataMap: SchemaMetaDataMap; refHandling: RefHandling; idMapper: IdMapper; moduleSystem: ModuleSystem; }): Promise<void>;