1 | import { Feed } from '../core/feed';
|
2 | import { PendingFriendshipsFeedResponse, PendingFriendshipsFeedResponseUsersItem } from '../responses';
|
3 | export declare class PendingFriendshipsFeed extends Feed<PendingFriendshipsFeedResponse, PendingFriendshipsFeedResponseUsersItem> {
|
4 | private nextMaxId;
|
5 | set state(body: PendingFriendshipsFeedResponse);
|
6 | request(): Promise<PendingFriendshipsFeedResponse>;
|
7 | items(): Promise<PendingFriendshipsFeedResponseUsersItem[]>;
|
8 | }
|