| 57 | } |
| 58 | |
| 59 | interface SwipeEventObject { |
| 60 | clientX: number; |
| 61 | clientY: number; |
| 62 | } |
| 63 | |
| 64 | type SwipeEventHandler<T = void> = (e: SwipeEventObject, nativeEvent: MouseEvent | TouchEvent) => T; |
| 65 | type StartSwipeHandler = SwipeEventHandler<{move: SwipeEventHandler; up: SwipeEventHandler}>; |
nothing calls this directly
no outgoing calls
no test coverage detected