1 |
|
2 | import type { FlingGestureHandlerEventPayload } from './GestureHandlerEventPayload';
|
3 | import { BaseGestureHandlerProps } from './gestureHandlerCommon';
|
4 | export declare const flingGestureHandlerProps: readonly ["numberOfPointers", "direction"];
|
5 | export interface FlingGestureConfig {
|
6 | |
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 | direction?: number;
|
21 | |
22 |
|
23 |
|
24 | numberOfPointers?: number;
|
25 | }
|
26 | export interface FlingGestureHandlerProps extends BaseGestureHandlerProps<FlingGestureHandlerEventPayload>, FlingGestureConfig {
|
27 | }
|
28 | export declare const flingHandlerName = "FlingGestureHandler";
|
29 | export type FlingGestureHandler = typeof FlingGestureHandler;
|
30 | export declare const FlingGestureHandler: import("react").ComponentType<FlingGestureHandlerProps & import("react").RefAttributes<any>>;
|