Files
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

12 lines
702 B
JavaScript

import createHandler from './createHandler';
import { baseGestureHandlerProps } from './gestureHandlerCommon';
export const nativeViewGestureHandlerProps = ['shouldActivateOnStart', 'disallowInterruption'];
export const nativeViewProps = [...baseGestureHandlerProps, ...nativeViewGestureHandlerProps];
export const nativeViewHandlerName = 'NativeViewGestureHandler';
// eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; see description on the top of gestureHandlerCommon.ts file
export const NativeViewGestureHandler = createHandler({
name: nativeViewHandlerName,
allowedProps: nativeViewProps,
config: {}
});
//# sourceMappingURL=NativeViewGestureHandler.js.map