10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
export interface CursorPaginatedResult<T> {
|
|
data: T[];
|
|
meta: {
|
|
nextCursor: string | null;
|
|
prevCursor: string | null;
|
|
hasMore: boolean;
|
|
limit: number;
|
|
};
|
|
}
|