UNPKG

@nrfcloud/ts-json-schema-transformer

Version:

A TypeScript transformer that generates JSON schemas and validators from TypeScript interfaces

5 lines (4 loc) 222 B
import { JSONSchema7 } from "json-schema"; import * as ts from "typescript"; import { AJVOptions } from "./project"; export declare function schemaToValidator(schema: JSONSchema7, options?: AJVOptions): ts.CallExpression;