Files
dsc-api/src/common/interfaces/ICursor-pagination.ts
T

7 lines
169 B
TypeScript

export interface ICursorPageFormat {
limit: number;
nextCursor: string | null;
previousCursor: string | null;
hasNextPage: boolean;
hasPreviousPage: boolean;
}