1 |
|
2 | import type { NativeViewGestureHandlerPayload } from './GestureHandlerEventPayload';
|
3 | import { BaseGestureHandlerProps } from './gestureHandlerCommon';
|
4 | export declare const nativeViewGestureHandlerProps: readonly ["shouldActivateOnStart", "disallowInterruption"];
|
5 | export interface NativeViewGestureConfig {
|
6 | |
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 | shouldActivateOnStart?: boolean;
|
13 | |
14 |
|
15 |
|
16 |
|
17 | disallowInterruption?: boolean;
|
18 | }
|
19 | export interface NativeViewGestureHandlerProps extends BaseGestureHandlerProps<NativeViewGestureHandlerPayload>, NativeViewGestureConfig {
|
20 | }
|
21 | export declare const nativeViewProps: readonly ["id", "enabled", "shouldCancelWhenOutside", "hitSlop", "cancelsTouchesInView", "userSelect", "activeCursor", "mouseButton", "enableContextMenu", "touchAction", "waitFor", "simultaneousHandlers", "blocksHandlers", "onBegan", "onFailed", "onCancelled", "onActivated", "onEnded", "onGestureEvent", "onHandlerStateChange", "shouldActivateOnStart", "disallowInterruption"];
|
22 | export declare const nativeViewHandlerName = "NativeViewGestureHandler";
|
23 | export type NativeViewGestureHandler = typeof NativeViewGestureHandler;
|
24 | export declare const NativeViewGestureHandler: import("react").ComponentType<NativeViewGestureHandlerProps & import("react").RefAttributes<any>>;
|