UNPKG

310 BTypeScriptView Raw
1import { IgClientError } from './ig-client.error';
2import { IgResponse } from '../types/common.types';
3export declare class IgResponseError<TBody extends {
4 [x: string]: any;
5} = any> extends IgClientError {
6 text: string;
7 response: IgResponse<TBody>;
8 constructor(response: IgResponse<TBody>);
9}