import { compile } from './src' async function main() { const jsonschema: any = { type: 'object', properties: { name: { type: 'string', title: 'haha' } } } let dts = await compile(jsonschema, 'IWeDa', { additionalProperties: false, bannerComment: '', format: false }) console.log(dts) } main()