@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
20 lines (19 loc) • 387 B
TypeScript
/**
* Interface for Step approver object.
* @export
* @interface IStepApprovers
*/
export interface IStepApprovers {
/**
* Id or ids separated by spaces
* @type {string}
* @memberof IStepApprovers
*/
approver: string;
/**
* Whether in id is substitution.
* @type {boolean}
* @memberof IStepApprovers
*/
approverSub: boolean;
}