UNPKG

zowe-cli-cics-deploy-plugin

Version:

IBM CICS Bundle generation and deployment for Zowe CLI

21 lines (20 loc) 675 B
import { ICommandHandler, IHandlerParameters } from "@zowe/imperative"; import { BundleParentHandler } from "../../shared/BundleParent.handler"; /** * Command handler for undeploying a bundle * @export * @class UndeployBundleHandler * @implements {ICommandHandler} */ export default class UndeployBundleHandler extends BundleParentHandler implements ICommandHandler { actionName: string; /** * Perform the UNDEPLOY BUNDLE action. * * @param {IHandlerParameters} params * @returns {Promise<string>} * @throws ImperativeError * @memberof UndeployBundleHandler */ performAction(params: IHandlerParameters): Promise<string>; }