import { Datatype } from "./Datatype"; import { Schema } from "./Schema"; export interface Parameter { type?: Datatype | Schema | string | Array; label?: string; description?: string; streamable?: boolean; default?: any; 'sbg:fileTypes'?: string; }