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) 437 B
import { IZosmfTsoResponse } from "../../../index"; export interface ICollectedResponses { /** * z/OSMF synchronous most tso command response messages. * @type IZosmfTsoResponse[] * @memberOf ICollectedResponses */ tsos: IZosmfTsoResponse[]; /** * Appended collected messages including READY prompt at the end. * @type string * @memberOf ICollectedResponses */ messages: string; }