1 | import { IgClientError } from './ig-client.error';
|
2 | import { IgResponse } from '../types/common.types';
|
3 | export 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 | }
|