json-schema-to-typescript
Version:
compile json schema to typescript typings
8 lines (7 loc) • 364 B
TypeScript
/// <reference types="lodash" />
import { Options } from './index';
import { AST } from './types/AST';
export declare function generate(ast: AST, options?: Options): string;
declare function generateTypeUnmemoized(ast: AST, options: Options): string;
export declare const generateType: typeof generateTypeUnmemoized & import("lodash").MemoizedFunction;
export {};