react-native-agora-chat
Version:
react native chat sdk
23 lines • 546 B
TypeScript
/**
* 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