1 | import type { BaseButtonProps, BorderlessButtonProps, RawButtonProps, RectButtonProps } from '../components/GestureButtonsProps';
|
2 | import { GestureEvent, GestureEventPayload, HandlerStateChangeEvent, HandlerStateChangeEventPayload } from './gestureHandlerCommon';
|
3 | import type { FlingGestureHandlerProps } from './FlingGestureHandler';
|
4 | import type { FlingGestureHandlerEventPayload, ForceTouchGestureHandlerEventPayload, LongPressGestureHandlerEventPayload, PanGestureHandlerEventPayload, PinchGestureHandlerEventPayload, RotationGestureHandlerEventPayload, TapGestureHandlerEventPayload, NativeViewGestureHandlerPayload } from './GestureHandlerEventPayload';
|
5 | import type { ForceTouchGestureHandlerProps } from './ForceTouchGestureHandler';
|
6 | import type { LongPressGestureHandlerProps } from './LongPressGestureHandler';
|
7 | import type { PanGestureHandlerProps } from './PanGestureHandler';
|
8 | import type { PinchGestureHandlerProps } from './PinchGestureHandler';
|
9 | import type { RotationGestureHandlerProps } from './RotationGestureHandler';
|
10 | import type { TapGestureHandlerProps } from './TapGestureHandler';
|
11 | import type { NativeViewGestureHandlerProps } from './NativeViewGestureHandler';
|
12 | export type GestureHandlerGestureEventNativeEvent = GestureEventPayload;
|
13 | export type GestureHandlerStateChangeNativeEvent = HandlerStateChangeEventPayload;
|
14 | export type GestureHandlerGestureEvent = GestureEvent;
|
15 | export type GestureHandlerStateChangeEvent = HandlerStateChangeEvent;
|
16 | export type NativeViewGestureHandlerGestureEvent = GestureEvent<NativeViewGestureHandlerPayload>;
|
17 | export type NativeViewGestureHandlerStateChangeEvent = HandlerStateChangeEvent<NativeViewGestureHandlerPayload>;
|
18 | export type TapGestureHandlerGestureEvent = GestureEvent<TapGestureHandlerEventPayload>;
|
19 | export type TapGestureHandlerStateChangeEvent = HandlerStateChangeEvent<TapGestureHandlerEventPayload>;
|
20 | export type ForceTouchGestureHandlerGestureEvent = GestureEvent<ForceTouchGestureHandlerEventPayload>;
|
21 | export type ForceTouchGestureHandlerStateChangeEvent = HandlerStateChangeEvent<ForceTouchGestureHandlerEventPayload>;
|
22 | export type LongPressGestureHandlerGestureEvent = GestureEvent<LongPressGestureHandlerEventPayload>;
|
23 | export type LongPressGestureHandlerStateChangeEvent = HandlerStateChangeEvent<LongPressGestureHandlerEventPayload>;
|
24 | export type PanGestureHandlerGestureEvent = GestureEvent<PanGestureHandlerEventPayload>;
|
25 | export type PanGestureHandlerStateChangeEvent = HandlerStateChangeEvent<PanGestureHandlerEventPayload>;
|
26 | export type PinchGestureHandlerGestureEvent = GestureEvent<PinchGestureHandlerEventPayload>;
|
27 | export type PinchGestureHandlerStateChangeEvent = HandlerStateChangeEvent<PinchGestureHandlerEventPayload>;
|
28 | export type RotationGestureHandlerGestureEvent = GestureEvent<RotationGestureHandlerEventPayload>;
|
29 | export type RotationGestureHandlerStateChangeEvent = HandlerStateChangeEvent<RotationGestureHandlerEventPayload>;
|
30 | export type FlingGestureHandlerGestureEvent = GestureEvent<FlingGestureHandlerEventPayload>;
|
31 | export type FlingGestureHandlerStateChangeEvent = HandlerStateChangeEvent<FlingGestureHandlerEventPayload>;
|
32 | export type NativeViewGestureHandlerProperties = NativeViewGestureHandlerProps;
|
33 | export type TapGestureHandlerProperties = TapGestureHandlerProps;
|
34 | export type LongPressGestureHandlerProperties = LongPressGestureHandlerProps;
|
35 | export type PanGestureHandlerProperties = PanGestureHandlerProps;
|
36 | export type PinchGestureHandlerProperties = PinchGestureHandlerProps;
|
37 | export type RotationGestureHandlerProperties = RotationGestureHandlerProps;
|
38 | export type FlingGestureHandlerProperties = FlingGestureHandlerProps;
|
39 | export type ForceTouchGestureHandlerProperties = ForceTouchGestureHandlerProps;
|
40 | export type RawButtonProperties = RawButtonProps;
|
41 | export type BaseButtonProperties = BaseButtonProps;
|
42 | export type RectButtonProperties = RectButtonProps;
|
43 | export type BorderlessButtonProperties = BorderlessButtonProps;
|