@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
12 lines (11 loc) • 372 B
TypeScript
import { IHandlerParameters } from "@zowe/imperative";
import { ZosmfBaseHandler } from "../../../../../zosmf/src/ZosmfBaseHandler";
/**
* Handle to issue a MVS console command
* @export
* @class Handler
* @implements {ICommandHandler}
*/
export default class Handler extends ZosmfBaseHandler {
processCmd(commandParameters: IHandlerParameters): Promise<void>;
}