UNPKG

ts-json-schema-generator

Version:

Generate JSON schema from your Typescript sources

12 lines (9 loc) 208 B
import { BaseType } from "./BaseType.js"; export class InferType extends BaseType { constructor(private id: string) { super(); } public getId(): string { return this.id; } }