UNPKG

395 BTypeScriptView Raw
1import { Feed } from '../core/feed';
2import { UserFeedResponse, UserFeedResponseItemsItem } from '../responses';
3export declare class UserFeed extends Feed<UserFeedResponse, UserFeedResponseItemsItem> {
4 id: number | string;
5 private nextMaxId;
6 protected set state(body: UserFeedResponse);
7 request(): Promise<UserFeedResponse>;
8 items(): Promise<UserFeedResponseItemsItem[]>;
9}