UNPKG

instagram-private-api

Version:

Instagram private API wrapper for full access to instagram

10 lines (9 loc) 526 B
import { Feed } from '../core/feed'; import { StoriesInsightsFeedResponseEdgesItem, StoriesInsightsFeedResponseRootObject } from '../responses'; export declare class StoriesInsightsFeed extends Feed<StoriesInsightsFeedResponseRootObject, StoriesInsightsFeedResponseEdgesItem> { private timeframe; private nextCursor; items(): Promise<StoriesInsightsFeedResponseEdgesItem[]>; request(): Promise<StoriesInsightsFeedResponseRootObject>; protected set state(response: StoriesInsightsFeedResponseRootObject); }