import { InputParameter } from "./InputParameter"; import { CommandLineBinding } from "./CommandLineBinding"; import { CWLType } from "./CWLType"; import { CommandInputRecordSchema } from "./CommandInputRecordSchema"; import { CommandInputEnumSchema } from "./CommandInputEnumSchema"; import { CommandInputArraySchema } from "./CommandInputArraySchema"; /** * An input parameter for a CommandLineTool. */ export interface CommandInputParameter extends InputParameter { /** * Describes how to handle the inputs of a process and convert them * into a concrete form for execution, such as command line parameters. * */ inputBinding?: CommandLineBinding; /** * Specify valid types of data that may be assigned to this parameter. * */ type?: CWLType | CommandInputRecordSchema | CommandInputEnumSchema | CommandInputArraySchema | string | Array; }