Skip to content

Interface: PageResult\<TRow\>

Defined in: src/data/types.ts:127

Result of a paginated data request.

Type Parameters

TRow

TRow

Properties

hasMore

hasMore: boolean

Defined in: src/data/types.ts:135

Whether more pages exist after this one.


nextCursor?

optional nextCursor?: string

Defined in: src/data/types.ts:133

Cursor for the next page (cursor-based pagination).


rows

rows: TRow[]

Defined in: src/data/types.ts:129

The rows for this page.


totalCount

totalCount: number

Defined in: src/data/types.ts:131

Total number of rows across all pages.