UNPKG

instagram-private-api

Version:

Instagram private API wrapper for full access to instagram

13 lines (12 loc) 493 B
import { Feed } from '../core/feed'; import { LocationFeedResponse, LocationFeedResponseMedia } from '../responses'; export declare class LocationFeed extends Feed<LocationFeedResponse, LocationFeedResponseMedia> { id: string | number; tab: 'recent' | 'ranked'; private nextMaxId; private nextPage; private nextMediaIds; protected set state(body: LocationFeedResponse); request(): Promise<LocationFeedResponse>; items(): Promise<LocationFeedResponseMedia[]>; }