UNPKG

@hacxy/json2ts

Version:

Json to typescript types generator

6 lines (5 loc) 184 B
export interface Json2TsOptions { indentation?: number; } declare function json2ts(json: string, name?: string, options?: Json2TsOptions): Promise<string>; export default json2ts;