# RowReorderConfig

> _Since v1.24.0_

Configuration for the deprecated `RowReorderPlugin` alias.

Picks the intra-grid keys from `RowDragDropConfig`. The full set of
options (including cross-grid `dropZone`, `canDrop`, `serializeRow`, etc.)
is available on `RowDragDropConfig` directly.

```ts
type RowReorderConfig = Pick<RowDragDropConfig<T>, "enableKeyboard" | "showDragHandle" | "dragHandlePosition" | "dragHandleWidth" | "debounceMs" | "animation" | "canMove">
```
