UNPKG

instagram-private-api

Version:

Instagram private API wrapper for full access to instagram

10 lines (9 loc) 448 B
import { Feed } from '../core/feed'; import { MediaCommentsFeedResponse, MediaCommentsFeedResponseCommentsItem } from '../responses/'; export declare class MediaCommentsFeed extends Feed<MediaCommentsFeedResponse, MediaCommentsFeedResponseCommentsItem> { id: string; private nextMinId; state: MediaCommentsFeedResponse; request(): Promise<MediaCommentsFeedResponse>; items(): Promise<MediaCommentsFeedResponseCommentsItem[]>; }