UNPKG

@broadcom/sysview-for-zowe-cli

Version:

Zowe CLI plugin for SYSVIEW

18 lines (17 loc) 602 B
import { RestClient, IImperativeError } from "@zowe/imperative"; /** * Sysview specific server implementations * * @export * @class SysviewRestClient * @extends {RestClient} */ export declare class SysviewRestClient extends RestClient { /** * Process an error encountered in the rest client * @param {IImperativeError} original - the original error automatically built by the abstract rest client * @returns {IImperativeError} - the processed error with details added * @memberof SysviewRestClient */ processError(original: IImperativeError): IImperativeError; }