Skip to content

StickyPredicate

Since v2.7.0

Predicate that decides whether a given row should be sticky. Receives the row data and its current index in the post-processed row list. Return any truthy value to mark the row as sticky.

type StickyPredicate = (row: unknown, index: number) => unknown