instagram-private-api
Version:
Instagram private API wrapper for full access to instagram
10 lines (9 loc) • 310 B
TypeScript
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>);
}