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