json-schema-to-typescript
Version:
compile json schema to typescript typings
5 lines (4 loc) • 316 B
TypeScript
import { LinkedJSONSchema, NormalizedJSONSchema } from './types/JSONSchema';
import { Options } from './';
import { DereferencedPaths } from './resolver';
export declare function normalize(rootSchema: LinkedJSONSchema, dereferencedPaths: DereferencedPaths, filename: string, options: Options): NormalizedJSONSchema;