@zowe/zos-tso-for-zowe-sdk
Version:
Zowe SDK to interact with TSO on z/OS
20 lines • 456 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;
}
//# sourceMappingURL=ISendTsoParms.d.ts.map