@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
26 lines (25 loc) • 537 B
TypeScript
/**
* Interface for variable-specification object.
* @export
* @interface IVariableSpecification
*/
export interface IVariableSpecification {
/**
* Name of the variable.
* @type {string}
* @memberof IVariableSpecification
*/
name: string;
/**
* Variable scope.
* @type {string}
* @memberof IVariableSpecification
*/
scope: string;
/**
* Indicates if is variable required.
* @type {boolean}
* @memberof IVariableSpecification
*/
required: boolean;
}