@zowe/zos-tso-for-zowe-sdk
Version:
Zowe SDK to interact with TSO on z/OS
20 lines • 418 B
TypeScript
/**
* TSO Message interface for one of TSO/E messages
* @export
* @interface ITsoMessage
*/
export interface ITsoMessage {
/**
* JSON version for message format
* @type {string}
* @memberof ITsoMessage
*/
VERSION: string;
/**
* description of the data type
* @type {string}
* @memberof ITsoMessage
*/
DATA: string;
}
//# sourceMappingURL=ITsoMessage.d.ts.map