UNPKG

react-native-agora-chat

Version:
23 lines 546 B
/** * The generic class which contains the cursor and pagination result. * * The class instance is returned when you make a paginated query. */ export declare class ChatCursorResult<T> { /** * The cursor that specifies where to start to get data. */ cursor: string; /** * The request result. */ list?: Array<T>; constructor(params: { cursor: string; list?: Array<T>; opt?: { map: (obj: any) => any; }; }); } //# sourceMappingURL=ChatCursorResult.d.ts.map