UNPKG

672 BTypeScriptView Raw
1import { Feed } from '../core/feed';
2import { IgAppModule } from '../types';
3import { TopicalExploreFeedResponseRootObject, TopicalExploreFeedResponseSectionalItemsItem } from '../responses';
4export declare class TopicalExploreFeed extends Feed<TopicalExploreFeedResponseRootObject, TopicalExploreFeedResponseSectionalItemsItem> {
5 module: IgAppModule;
6 lat?: string | number;
7 lng?: string | number;
8 clusterId: string;
9 sessionId: string;
10 private nextMaxId;
11 set state(body: TopicalExploreFeedResponseRootObject);
12 items(): Promise<TopicalExploreFeedResponseSectionalItemsItem[]>;
13 request(): Promise<TopicalExploreFeedResponseRootObject>;
14}