Skip to content

PaginatedFetchFunction

PaginatedFetchFunction<T> = (cursor?) => Promise<PaginatedList<T>>

Defined in: src/helpers/pagination.helpers.ts:44

Fetch function that returns a paginated list. This function receives an optional cursor. It returns the next page of results.

T

string

Promise<PaginatedList<T>>