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