UNPKG

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