@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
27 lines • 805 B
TypeScript
import { ICommandHandler, IHandlerParameters } from "@zowe/imperative";
/**
* Handler to disable daemon mode.
* @export
* @class Handler
* @implements {ICommandHandler}
*/
export default class RestartDaemonHandler implements ICommandHandler {
/**
* Process the disable daemon command and populates the response
* object as needed.
*
* @param {IHandlerParameters} cmdParams Parameters supplied by yargs
*
*/
process(cmdParams: IHandlerParameters): Promise<void>;
/**
* Restart daemon mode.
*
* @throws {ImperativeError}
*
* @returns {string} An informational message to display to the user after
* successful completion of the operation.
*/
private restartDaemon;
}
//# sourceMappingURL=Restart.handler.d.ts.map