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