UNPKG

@zowe/cli

Version:

Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.

21 lines (20 loc) 800 B
import { ZosmfBaseHandler } from "../../zosmf/src/ZosmfBaseHandler"; import { IHandlerParameters } from "@zowe/imperative"; import { IStartTsoParms } from "./api/doc/input/IStartTsoParms"; export declare abstract class ZosTsoBaseHandler extends ZosmfBaseHandler { /** * The parameter object required to issue start commands * @type {IStartTsoParms} */ protected mTsoStart: IStartTsoParms; /** * This will grab the arguments and create the tso parameter object for APIs before * invoking the actual TSO handler. * {@link ZosmfBaseHandler#processWithSession} method. * * @param {IHandlerParameters} params Command parameters sent by imperative. * * @returns {Promise<void>} */ process(params: IHandlerParameters): Promise<void>; }