UNPKG

602 BTypeScriptView Raw
1import { Feed } from '../core/feed';
2import { IgAppModule } from '../types/common.types';
3import { MusicMoodFeedResponseItemsItem, MusicMoodFeedResponseRootObject } from '../responses';
4export declare class MusicMoodFeed extends Feed<MusicMoodFeedResponseRootObject, MusicMoodFeedResponseItemsItem> {
5 protected nextCursor?: string;
6 product: IgAppModule;
7 id: number | string;
8 items(): Promise<MusicMoodFeedResponseItemsItem[]>;
9 request(): Promise<MusicMoodFeedResponseRootObject>;
10 protected set state(response: MusicMoodFeedResponseRootObject);
11 isMoreAvailable(): boolean;
12}