react-native-touch-tracker
Version:
tracks all touches in react native and has utilities to create outside click functionality
9 lines (8 loc) • 315 B
TypeScript
import { StyleProp, ViewStyle } from "react-native";
import * as React from "react";
declare type TouchTrackerProviderProps = {
children: React.ReactNode;
style?: StyleProp<ViewStyle>;
};
export declare function TouchTrackerProvider({ children, style, }: TouchTrackerProviderProps): JSX.Element;
export {};