UNPKG

508 BTypeScriptView Raw
1import { Feed } from '../core/feed';
2import { PostsInsightsFeedResponseEdgesItem, PostsInsightsFeedResponseRootObject } from '../responses';
3export declare class PostsInsightsFeed extends Feed<PostsInsightsFeedResponseRootObject, PostsInsightsFeedResponseEdgesItem> {
4 private options;
5 private nextCursor;
6 items(): Promise<PostsInsightsFeedResponseEdgesItem[]>;
7 request(): Promise<PostsInsightsFeedResponseRootObject>;
8 protected set state(response: PostsInsightsFeedResponseRootObject);
9}