@zowe/imperative
Version:
framework for building configurable CLIs
25 lines • 541 B
TypeScript
/**
* Information about an installed plugin
*/
export interface IPluginJsonObject {
/**
* The package location. If this is an npm package, this will be no different
* than the key in the JSON file.
*
* @type {string}
*/
package: string;
/**
* The npm location to install from.
*
* @type {string}
*/
location: string;
/**
* The version of the installed plugin.
*
* @type {string}
*/
version: string;
}
//# sourceMappingURL=IPluginJsonObject.d.ts.map