7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
export interface ICursorPageFormat {
|
|
limit: number;
|
|
nextCursor: string | null;
|
|
previousCursor: string | null;
|
|
hasNextPage: boolean;
|
|
hasPreviousPage: boolean;
|
|
} |