@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
21 lines (20 loc) • 590 B
TypeScript
/**
* Common z/OS Consoles API Parameters.
* @export
* @interface IConsoleParms
*/
export interface IConsoleParms {
/**
* The z/OS emcs console to direct the commands.
* @type (string}
* @memberof IConsoleParms
*/
consoleName?: string;
/**
* The z/OSMF Console API returns '\r' or '\r\n' where line-breaks. Can attempt to replace these
* sequences with '\n', but there may be cases where that is not preferable. Specify false to prevent processing.
* @type {string}
* @memberof IConsoleParms
*/
processResponses?: boolean;
}