# 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.

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