UNPKG

ts-json-schema-generator

Version:

Generate JSON schema from your Typescript sources

11 lines (9 loc) 229 B
export abstract class BaseType { public abstract getId(): string; /** * Get the definition name of the type. Override for non-basic types. */ public getName(): string { return this.getId(); } }