import { Datatype } from "./Datatype"; import { Binding } from "./Binding"; import { ComplexType } from "./ComplexType"; export interface InputSchema { type: ComplexType | Datatype | InputSchema | string | Array; inputBinding?: Binding; items?: Datatype | InputSchema | string | Array; values?: string; symbols?: Array; fields?: Array; }