UNPKG

481 BTypeScriptView Raw
1import { Feed } from '../core/feed';
2import { MediaCommentsFeedResponse, MediaCommentsFeedResponseCommentsItem } from '../responses/';
3export 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}