UNPKG

instagram-private-api

Version:

Instagram private API wrapper for full access to instagram

10 lines (9 loc) 467 B
import { Feed } from '../core/feed'; import { UsertagsFeedResponseItemsItem, UsertagsFeedResponseRootObject } from '../responses'; export declare class UsertagsFeed extends Feed<UsertagsFeedResponseRootObject, UsertagsFeedResponseItemsItem> { id: number | string; private nextMaxId; protected set state(body: UsertagsFeedResponseRootObject); request(): Promise<UsertagsFeedResponseRootObject>; items(): Promise<UsertagsFeedResponseItemsItem[]>; }