Skip to content
module@warp-drive/experiments/pagination @experimental

Type Alias PaginationContentFeaturesFor<RT = unknown, M extends PaginateMode = "paged">

ts
type PaginationContentFeaturesFor<RT = unknown, M extends PaginateMode = "paged"> = M extends "infinite" ? InfinitePaginationContentFeatures<RT> : PagedPaginationContentFeatures<RT>;

Defined in: node_modules/.pnpm/@warp-d_5e1563e0e582c8365bb74466d3761d6d/node_modules/@warp-drive/core/dist/signals/-leaked.d.ts:799

Resolves a PaginateMode to the content features it exposes. Mirror of PaginationStateFor.

Type Parameters

RT

RT = unknown

M

M extends PaginateMode = "paged"

Released under the MIT License.