disabled-inputs-modal-and-filled-with-proper-values
[arvados-workbench2.git] / src / models / workflow.ts
index a342dbbfc5fde437e8dbdfb101f8ae3d612ce559..3a38348ef25751eb147a60c1d7deeacb20b861df 100644 (file)
@@ -92,6 +92,8 @@ export interface GenericCommandInputParameter<Type, Value> {
     doc?: string | string[];
     default?: Value;
     type?: Type | Array<Type | CWLType.NULL>;
+    value?: Value;
+    disabled?: boolean;
 }
 export type GenericArrayCommandInputParameter<Type, Value> = GenericCommandInputParameter<CommandInputArraySchema<Type>, Value[]>;