module@warp-drive/experiments/pagination @experimentalType Alias PaginationContentFeaturesFor<RT =
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>;Resolves a PaginateMode to the content features it exposes. Mirror of PaginationStateFor.
Type Parameters
RT
RT = unknown
M
M extends PaginateMode = "paged"