forked from software-mansion/react-native-gesture-handler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
103 lines (100 loc) · 2.91 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
export { default as Directions } from './src/Directions';
export { State } from './src/State';
export { default as gestureHandlerRootHOC } from './src/gestureHandlerRootHOC';
export { default as GestureHandlerRootView } from './src/GestureHandlerRootView';
export {
// event types
GestureEvent,
HandlerStateChangeEvent,
// event payloads types
GestureEventPayload,
HandlerStateChangeEventPayload,
TapGestureHandlerEventPayload,
ForceTouchGestureHandlerEventPayload,
LongPressGestureHandlerEventPayload,
PanGestureHandlerEventPayload,
PinchGestureHandlerEventPayload,
RotationGestureHandlerEventPayload,
FlingGestureHandlerEventPayload,
// gesture handlers props types
TapGestureHandlerProps,
ForceTouchGestureHandlerProps,
LongPressGestureHandlerProps,
PanGestureHandlerProps,
PinchGestureHandlerProps,
RotationGestureHandlerProps,
FlingGestureHandlerProps,
// gesture handlers
TapGestureHandler,
ForceTouchGestureHandler,
LongPressGestureHandler,
PanGestureHandler,
PinchGestureHandler,
RotationGestureHandler,
FlingGestureHandler,
} from './src/handlers/gestureHandlers';
export { default as createNativeWrapper } from './src/handlers/createNativeWrapper';
export {
NativeViewGestureHandler,
NativeViewGestureHandlerPayload,
NativeViewGestureHandlerProps,
} from './src/handlers/NativeViewGestureHandler';
export {
// buttons props
RawButtonProps,
BaseButtonProps,
RectButtonProps,
BorderlessButtonProps,
// buttons
RawButton,
BaseButton,
RectButton,
BorderlessButton,
} from './src/components/GestureButtons';
export {
TouchableHighlight,
TouchableNativeFeedback,
TouchableOpacity,
TouchableWithoutFeedback,
} from './src/components/touchables';
export {
ScrollView,
Switch,
TextInput,
DrawerLayoutAndroid,
FlatList,
} from './src/components/GestureComponents';
export {
//events
GestureHandlerGestureEvent,
GestureHandlerStateChangeEvent,
//event payloads
GestureHandlerGestureEventNativeEvent,
GestureHandlerStateChangeNativeEvent,
NativeViewGestureHandlerGestureEvent,
NativeViewGestureHandlerStateChangeEvent,
TapGestureHandlerGestureEvent,
TapGestureHandlerStateChangeEvent,
ForceTouchGestureHandlerGestureEvent,
ForceTouchGestureHandlerStateChangeEvent,
LongPressGestureHandlerGestureEvent,
LongPressGestureHandlerStateChangeEvent,
PanGestureHandlerGestureEvent,
PanGestureHandlerStateChangeEvent,
PinchGestureHandlerGestureEvent,
PinchGestureHandlerStateChangeEvent,
RotationGestureHandlerGestureEvent,
RotationGestureHandlerStateChangeEvent,
FlingGestureHandlerGestureEvent,
FlingGestureHandlerStateChangeEvent,
} from './src/handlers/gestureHandlerTypesCompat';
export { default as Swipeable } from './src/components/Swipeable';
export {
default as DrawerLayout,
DrawerLayoutProps,
DrawerPosition,
DrawerState,
DrawerType,
DrawerLockMode,
DrawerKeyboardDismissMode,
} from './src/components/DrawerLayout';