UNPKG

json-schema-to-joi

Version:

Converts JSON schema to Joi typescript code

5 lines (4 loc) 219 B
import { JSONSchema4 } from 'json-schema'; import { JoiSchema } from './types'; import { ResolveOptions } from './options'; export declare function resolveType(schema: JSONSchema4, options?: ResolveOptions): JoiSchema;