import { JSONSchema7 } from 'json-schema'; export interface Constructor extends Function { new (...args: any[]): T; } export interface JSONSchema extends JSONSchema7 { properties?: { [k in keyof Type]: JSONSchema; }; }