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.
Type Parameters
Section titled “Type Parameters”T
Parameters
Section titled “Parameters”cursor?
Section titled “cursor?”string
Returns
Section titled “Returns”Promise<PaginatedList<T>>