1 | import { Feed } from '../core/feed';
|
2 | import { UserFeedResponse, UserFeedResponseItemsItem } from '../responses';
|
3 | export 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 | }
|