UNPKG

@conpago/mongo-cursor-pagination

Version:

Make it easy to return cursor-paginated results from a Mongo collection

9 lines (8 loc) 157 B
export type PaginationResponse = { results: any[]; previous?: any; hasPrevious?: boolean; next?: any; hasNext?: boolean; totalCount?: number; };