1 |
|
2 | import { LongPressGestureHandlerEventPayload } from './GestureHandlerEventPayload';
|
3 | import { BaseGestureHandlerProps } from './gestureHandlerCommon';
|
4 | export declare const longPressGestureHandlerProps: readonly ["minDurationMs", "maxDist", "numberOfPointers"];
|
5 | export interface LongPressGestureConfig {
|
6 | |
7 |
|
8 |
|
9 |
|
10 | minDurationMs?: number;
|
11 | |
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 | maxDist?: number;
|
18 | |
19 |
|
20 |
|
21 | numberOfPointers?: number;
|
22 | }
|
23 | export interface LongPressGestureHandlerProps extends BaseGestureHandlerProps<LongPressGestureHandlerEventPayload>, LongPressGestureConfig {
|
24 | }
|
25 | export declare const longPressHandlerName = "LongPressGestureHandler";
|
26 | export type LongPressGestureHandler = typeof LongPressGestureHandler;
|
27 | export declare const LongPressGestureHandler: import("react").ComponentType<LongPressGestureHandlerProps & import("react").RefAttributes<any>>;
|