import { IHandlerParameters, AbstractSession } from "@zowe/imperative"; import { INVResponse } from "../../doc"; /** * Class of utility file APIs for usage within the CLI and programmatically from node scripts. * * @class ListFiles */ export declare class Issue { /** * Returns result after issue NetView command. * @static * @argument {IHandlerParameters} params Command parameters sent by imperative. * @argument {AbstractSession} session the session to connect to NetView REST Server * @returns {Promise} promise that returns the NetView REST server response * (including completion code, reasone code and api response) * @throws ImperativeError */ static issueCommand(params: IHandlerParameters, session: AbstractSession): Promise; }