react-native-gesture-handler
Version:
Experimental implementation of a new declarative API for gesture handling in react-native
7 lines (6 loc) • 319 B
TypeScript
import * as React from 'react';
import { PropsWithChildren } from 'react';
import { ViewProps } from 'react-native';
export interface GestureHandlerRootViewProps extends PropsWithChildren<ViewProps> {
}
export default function GestureHandlerRootView({ style, ...rest }: GestureHandlerRootViewProps): React.JSX.Element;