@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) • 409 B
TypeScript
/**
* Interface for TSO issue command z/OSMF parameters
* @export
* @interface IIssueTsoParms
*/
export interface ISendTsoParms {
/**
* Servlet key of an active address space
* @type string
* @memberOf ISendTsoParms
*/
servletKey: string;
/**
* Data to be sent to the active address space
* @type string
* @memberOf ISendTsoParms
*/
data: string;
}