@zowe/imperative
Version:
framework for building configurable CLIs
19 lines • 495 B
TypeScript
/**
* Interface representing a single setting
*/
export interface IImperativeEnvironmentalVariableSetting {
/**
* The key to the process.env object
* AKA. the environmental variable name
* e.g. MYCLI_APP_LOG_LEVEL
* @type {string}
*/
key: string;
/**
* The value specified by the user for this variable, if any
* e.g. "DEBUG"
* @type {string}
*/
value: string;
}
//# sourceMappingURL=IImperativeEnvironmentalVariableSetting.d.ts.map