1 | import { Feed } from '../core/feed';
|
2 | import { IgAppModule } from '../types/common.types';
|
3 | import { MusicSearchFeedResponseItemsItem, MusicSearchFeedResponseRootObject } from '../responses';
|
4 | export declare class MusicSearchFeed extends Feed<MusicSearchFeedResponseRootObject, MusicSearchFeedResponseItemsItem> {
|
5 | protected nextCursor?: string;
|
6 | product: IgAppModule;
|
7 | query: string;
|
8 | searchSessionId: string;
|
9 | items(): Promise<MusicSearchFeedResponseItemsItem[]>;
|
10 | request(): Promise<MusicSearchFeedResponseRootObject>;
|
11 | protected set state(response: any);
|
12 | isMoreAvailable(): boolean;
|
13 | }
|