UNPKG

ng2-json-editor

Version:

Angular2 component for editing large json documents

10 lines (9 loc) 264 B
import { SchemaOption } from './schema-option'; export interface SchemaOptions extends SchemaOption { properties?: { [prop: string]: SchemaOptions; }; items?: SchemaOptions; allOf?: Array<SchemaOptions>; anyOf?: Array<SchemaOptions>; }