UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

16 lines (15 loc) 615 B
import { IImperativeError, Logger, RestClient } from "@zowe/imperative"; export declare class CA7RestClient extends RestClient { /** * Use the Zowe logger instead of the imperative logger * @type {Logger} */ get log(): Logger; /** * 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 CA7RestClient */ protected processError(original: IImperativeError): IImperativeError; }