1 | import { Feed } from '../core/feed';
|
2 | import { PostsInsightsFeedResponseEdgesItem, PostsInsightsFeedResponseRootObject } from '../responses';
|
3 | export 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 | }
|