From 6fda374cf003ece2ba553a4ac1e38e778346b123 Mon Sep 17 00:00:00 2001 From: Olivier Louvignes Date: Sat, 1 Jun 2024 14:54:15 +0200 Subject: [PATCH] chore(types): add missing pointerType to GestureTouchEvent --- src/handlers/gestureHandlerCommon.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/handlers/gestureHandlerCommon.ts b/src/handlers/gestureHandlerCommon.ts index bca9895802..9927d852eb 100644 --- a/src/handlers/gestureHandlerCommon.ts +++ b/src/handlers/gestureHandlerCommon.ts @@ -167,6 +167,7 @@ export type GestureTouchEvent = { eventType: TouchEventType; allTouches: TouchData[]; changedTouches: TouchData[]; + pointerType: PointerType; }; export type GestureUpdateEvent> =