( current: IsDraggingState, impact: DragImpact, )
| 24 | ]; |
| 25 | |
| 26 | export const withImpact = ( |
| 27 | current: IsDraggingState, |
| 28 | impact: DragImpact, |
| 29 | ): IsDraggingState => |
| 30 | ({ |
| 31 | ...current, |
| 32 | impact, |
| 33 | }) as any; |
| 34 | |
| 35 | export const move = ( |
| 36 | previous: IsDraggingState, |
no outgoing calls
no test coverage detected
searching dependent graphs…