@zowe/imperative
Version:
framework for building configurable CLIs
15 lines • 431 B
TypeScript
import { ICommandHandler, IHandlerParameters } from "../../../../../cmd";
/**
* Edit config
*/
export default class EditHandler implements ICommandHandler {
/**
* Process the command and input.
*
* @param {IHandlerParameters} params Parameters supplied by yargs
*
* @throws {ImperativeError}
*/
process(params: IHandlerParameters): Promise<void>;
}
//# sourceMappingURL=edit.handler.d.ts.map