1 | import { Feed } from '../core/feed';
|
2 | import { MediaCommentsFeedResponse, MediaCommentsFeedResponseCommentsItem } from '../responses/';
|
3 | export declare class MediaCommentsFeed extends Feed<MediaCommentsFeedResponse, MediaCommentsFeedResponseCommentsItem> {
|
4 | id: string;
|
5 | private nextMaxId;
|
6 | private nextMinId;
|
7 | set state(body: MediaCommentsFeedResponse);
|
8 | request(): Promise<MediaCommentsFeedResponse>;
|
9 | items(): Promise<MediaCommentsFeedResponseCommentsItem[]>;
|
10 | }
|