import { SchemaOption } from './schema-option'; export interface SchemaOptions extends SchemaOption { properties?: { [prop: string]: SchemaOptions; }; items?: SchemaOptions; allOf?: Array; anyOf?: Array; }