@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) • 335 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;
}