UNPKG

@gorhom/bottom-sheet

Version:

A performant interactive bottom sheet with fully configurable options 🚀

17 lines (15 loc) • 586 B
import type React from 'react'; import type { RefreshControlProps } from 'react-native'; import type { NativeViewGestureHandlerProps } from 'react-native-gesture-handler'; import BottomSheetRefreshControl from './BottomSheetRefreshControl'; export default BottomSheetRefreshControl as any as React.MemoExoticComponent< React.ForwardRefExoticComponent< RefreshControlProps & { children: React.ReactNode | React.ReactNode[]; } & React.RefAttributes< React.ComponentType< NativeViewGestureHandlerProps & React.RefAttributes<any> > > > >;