@zowe/imperative
Version:
framework for building configurable CLIs
14 lines • 501 B
TypeScript
import { IImperativeOverrides } from "../../../imperative/src/doc/IImperativeOverrides";
/**
* This interface defines the structure of the settings file.
*/
export interface ISettingsFile {
/**
* The overrides object determines which items will be used for any overrides in
* the overrides loader. Overrides can come from the base cli or plugins.
*/
overrides: {
[ ]-?: false | string;
};
}
//# sourceMappingURL=ISettingsFile.d.ts.map