import { IHandlerParameters, Session } from "@zowe/imperative"; import { NVBaseHandler } from "../../NVBaseHandler"; import { INVResponse } from "../../../api"; /** * Command handler for similating and testing specified NetView Automation Table statments * @export * @class AutomationTableHandler * @implements {ICommandHandler} */ export default class AutomationTableHandler extends NVBaseHandler { processWithSession(params: IHandlerParameters, session: Session): Promise; }