@zowe/imperative
Version:
framework for building configurable CLIs
22 lines • 735 B
TypeScript
import { ICommandDefinition, ICommandArguments, ICommandProfileTypeConfiguration } from "../../../cmd";
import { Config } from "../../../config";
import { IProfileTypeConfiguration } from "../../../profiles";
export interface ICensorOptions {
/**
* An array of profile schema definitions
*/
profiles?: IProfileTypeConfiguration[] | ICommandProfileTypeConfiguration[];
/**
* The team config API
*/
config?: Config;
/**
* The command definition for the command being executed
*/
commandDefinition?: ICommandDefinition;
/**
* The command arguments for the command being executed
*/
commandArguments?: ICommandArguments;
}
//# sourceMappingURL=ICensorOptions.d.ts.map