UNPKG

instagram-private-api

Version:

Instagram private API wrapper for full access to instagram

10 lines (9 loc) 369 B
import { Feed } from '../core/feed'; import { TagFeedResponse, TagFeedResponseItemsItem } from '../responses'; export declare class TagFeed extends Feed<TagFeedResponse, TagFeedResponseItemsItem> { tag: string; private nextMaxId; set state(body: TagFeedResponse); request(): Promise<TagFeedResponse>; items(): Promise<TagFeedResponseItemsItem[]>; }