UNPKG

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