import { AbstractSession } from "@zowe/imperative"; import { INVParamDefinition } from "../doc/INVParamDefinition"; /** * Utilities for handling NetView REST URIs * @export * @class NVURIUtil */ export declare class NVURIUtil { /** * Handle base path to connect to rest service from APIML. * Same with the handleBasePath function in base plugin, * Will find a menthod to merge it into base plugin in later roadmap. * @returns {string} - Returns the API URI */ static handleBasePath(session: AbstractSession): string; /** * Append REST URI parameters to URL. * Same with the appendURIParam function in base plugin, * Will find a menthod to merge it into base plugin in later roadmap. * @returns {string} - Returns the API URI */ static appendURIParam(param: INVParamDefinition, URIParams: string): any; }