@zowe/zos-workflows-for-zowe-sdk
Version:
Zowe SDK to interact with the z/OS workflows APIs
20 lines • 374 B
TypeScript
/**
* Interface for variable objects.
* @export
* @interface IVariable
*/
export interface IVariable {
/**
* Name of the variable.
* @type {string}
* @memberof IVariable
*/
name: string;
/**
* Value of the variable.
* @type {string}
* @memberof IVariable
*/
value: string;
}
//# sourceMappingURL=IVariable.d.ts.map