UNPKG

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