instagram-private-api
Version:
Instagram private API wrapper for full access to instagram
11 lines (10 loc) • 481 B
TypeScript
import { Feed } from '../core/feed';
import { MediaCommentsFeedResponse, MediaCommentsFeedResponseCommentsItem } from '../responses/';
export declare class MediaCommentsFeed extends Feed<MediaCommentsFeedResponse, MediaCommentsFeedResponseCommentsItem> {
id: string;
private nextMaxId;
private nextMinId;
set state(body: MediaCommentsFeedResponse);
request(): Promise<MediaCommentsFeedResponse>;
items(): Promise<MediaCommentsFeedResponseCommentsItem[]>;
}