@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
29 lines (28 loc) • 708 B
TypeScript
export declare type startT = "outputFileValue" | "existingValue" | "leaveConflict";
/**
* Interface for starting workflow instance.
* @export
* @interface IStartWorkflow
*/
export interface IStartWorkflow {
/**
* Resolve conflicts by using output file,
* already existing value or leave the
* conflict to be handled manually.
* @type {startT}
* @memberof IStartWorkflow
*/
resolveConflictByUsing?: startT;
/**
* Step name to be run.
* @type {string}
* @memberof IStartWorkflow
*/
stepName?: string;
/**
* Perform subsequent steps.
* @type {boolean}
* @memberof IStartWorkflow
*/
performSubsequent?: boolean;
}