UNPKG

461 BTypeScriptView Raw
1import { Feed } from '../core/feed';
2import { TagsFeedResponse, TagsFeedResponseMedia } from '../responses';
3export declare class TagsFeed extends Feed<TagsFeedResponse, TagsFeedResponseMedia> {
4 tag: string;
5 tab: 'top' | 'recent' | 'places';
6 private nextMaxId;
7 private nextPage;
8 private nextMediaIds;
9 protected set state(body: TagsFeedResponse);
10 request(): Promise<TagsFeedResponse>;
11 items(): Promise<TagsFeedResponseMedia[]>;
12}