1 | import { Feed } from '../core/feed';
|
2 | import { LocationFeedResponse, LocationFeedResponseMedia } from '../responses';
|
3 | export declare class LocationFeed extends Feed<LocationFeedResponse, LocationFeedResponseMedia> {
|
4 | id: string | number;
|
5 | tab: 'recent' | 'ranked';
|
6 | private nextMaxId;
|
7 | private nextPage;
|
8 | private nextMediaIds;
|
9 | protected set state(body: LocationFeedResponse);
|
10 | request(): Promise<LocationFeedResponse>;
|
11 | items(): Promise<LocationFeedResponseMedia[]>;
|
12 | }
|