UNPKG

instagram-private-api

Version:

Instagram private API wrapper for full access to instagram

9 lines (8 loc) 384 B
import { Feed } from '../core/feed'; import { BestiesFeedResponse, BestiesFeedResponseUsersItem } from '../responses'; export declare class BestiesFeed extends Feed<BestiesFeedResponse, BestiesFeedResponseUsersItem> { private nextMaxId; set state(body: BestiesFeedResponse); request(): Promise<BestiesFeedResponse>; items(): Promise<BestiesFeedResponseUsersItem[]>; }