UNPKG

instagram-private-api

Version:

Instagram private API wrapper for full access to instagram

15 lines (14 loc) 672 B
import { Feed } from '../core/feed'; import { IgAppModule } from '../types'; import { TopicalExploreFeedResponseRootObject, TopicalExploreFeedResponseSectionalItemsItem } from '../responses'; export declare class TopicalExploreFeed extends Feed<TopicalExploreFeedResponseRootObject, TopicalExploreFeedResponseSectionalItemsItem> { module: IgAppModule; lat?: string | number; lng?: string | number; clusterId: string; sessionId: string; private nextMaxId; set state(body: TopicalExploreFeedResponseRootObject); items(): Promise<TopicalExploreFeedResponseSectionalItemsItem[]>; request(): Promise<TopicalExploreFeedResponseRootObject>; }