UNPKG

@bacons/expo-metro-runtime

Version:

Tools for making experimental Metro bundler features work

14 lines (13 loc) 383 B
import { GestureResponderEvent, Insets, ViewStyle } from 'react-native'; declare type Props = { backgroundColor: { default: string; pressed: string; }; children?: any; hitSlop?: Insets; onPress?: ((event: GestureResponderEvent) => void) | null; style?: ViewStyle; }; export declare function LogBoxButton(props: Props): JSX.Element; export {};