@zowe/imperative
Version:
framework for building configurable CLIs
14 lines • 409 B
TypeScript
import { IPluginJsonObject } from "./IPluginJsonObject";
/**
* Format of plugins.json file. Represents the list of installed plugins.
*/
export interface IPluginJson {
/**
* Each object key is the name of a plugin and the value is information about
* said plugin.
*
* @type {IPluginJsonObject}
*/
[key: string]: IPluginJsonObject;
}
//# sourceMappingURL=IPluginJson.d.ts.map