( items: T, event: DragDropEventMap<U, V, W>['dragover'] | DragDropEventMap<U, V, W>['dragend'] )
| 318 | } |
| 319 | |
| 320 | export function move< |
| 321 | T extends Items | Record<UniqueIdentifier, Items>, |
| 322 | U extends Draggable, |
| 323 | V extends Droppable, |
| 324 | W extends DragDropManager<U, V>, |
| 325 | >( |
| 326 | items: T, |
| 327 | event: DragDropEventMap<U, V, W>['dragover'] | DragDropEventMap<U, V, W>['dragend'] |
| 328 | ) { |
| 329 | return mutate(items, event, arrayMove); |
| 330 | } |
| 331 | |
| 332 | export function swap< |
| 333 | T extends Items | Record<UniqueIdentifier, Items>, |
no test coverage detected