UNPKG

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