UNPKG

instagram-private-api

Version:

Instagram private API wrapper for full access to instagram

10 lines (9 loc) 310 B
import { IgClientError } from './ig-client.error'; import { IgResponse } from '../types/common.types'; export declare class IgResponseError<TBody extends { [x: string]: any; } = any> extends IgClientError { text: string; response: IgResponse<TBody>; constructor(response: IgResponse<TBody>); }