File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
packages/react-native-gesture-handler/src Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,11 @@ export { NativeDetector } from './v3/NativeDetector/NativeDetector';
168
168
export * from './v3/hooks/useGesture' ;
169
169
export * from './v3/hooks/relations' ;
170
170
171
- export { SingleGestureName } from './v3/types' ;
171
+ export {
172
+ SingleGestureName ,
173
+ SingleGestureType ,
174
+ ComposedGesture as ComposedGestureType ,
175
+ } from './v3/types' ;
172
176
173
177
export * from './v3/hooks/gestures' ;
174
178
Original file line number Diff line number Diff line change @@ -106,6 +106,8 @@ export type SingleGesture<THandlerData, TConfig> = {
106
106
gestureRelations : GestureRelations ;
107
107
} ;
108
108
109
+ export type SingleGestureType = SingleGesture < unknown , unknown > ;
110
+
109
111
export type ComposedGesture = {
110
112
tags : number [ ] ;
111
113
type : ComposedGestureName ;
You can’t perform that action at this time.
0 commit comments