UNPKG

com.phloxui

Version:

PhloxUI Ng2+ Framework

19 lines (18 loc) 390 B
export declare class JsonSchema { title: string; type: string; properties: { [key: string]: JsonSchema; }; required: string[]; description: string; minimum: any; maximum: any; isRequired: boolean; items: JsonSchema; id: string; $ref: string; constructor(title?: string, properties?: { [key: string]: JsonSchema; }); }