instagram-private-api
Version:
Instagram private API wrapper for full access to instagram
10 lines (9 loc) • 508 B
TypeScript
import { Feed } from '../core/feed';
import { PostsInsightsFeedResponseEdgesItem, PostsInsightsFeedResponseRootObject } from '../responses';
export declare class PostsInsightsFeed extends Feed<PostsInsightsFeedResponseRootObject, PostsInsightsFeedResponseEdgesItem> {
private options;
private nextCursor;
items(): Promise<PostsInsightsFeedResponseEdgesItem[]>;
request(): Promise<PostsInsightsFeedResponseRootObject>;
protected set state(response: PostsInsightsFeedResponseRootObject);
}