Interface: PaginationPage<T, Cursor>
Defined in: src/listing.ts:16
A page returned to the generic pagination helper.
Type Parameters
| Type Parameter |
|---|
T |
Cursor |
Properties
items
items: T[];
Defined in: src/listing.ts:18
Records in this page.
next?
optional next?: Cursor;
Defined in: src/listing.ts:20
Cursor for the next page. Omit when this is the last page.