UNPKG

zowe-cli-cics-deploy-plugin

Version:

IBM CICS Bundle generation and deployment for Zowe CLI

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