UNPKG

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