UNPKG

@zowe/cli

Version:

Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.

16 lines (15 loc) 294 B
/** * Response to the successfully archived workflow * * @export * @interface IArchivedWorkflow */ export interface IArchivedWorkflow { /** * Workflow key of the archived workflow * * @type {string} * @memberof IArchivedWorkflow */ workflowKey?: string; }