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