UNPKG

@gorhom/bottom-sheet

Version:

A performant interactive bottom sheet with fully configurable options 🚀

13 lines (10 loc) • 333 B
import type { ReactNode, RefObject } from 'react'; import type { BottomSheetModalPrivateMethods } from '../bottomSheetModal'; export interface BottomSheetModalRef { key: string; ref: RefObject<BottomSheetModalPrivateMethods>; willUnmount: boolean; } export interface BottomSheetModalProviderProps { children?: ReactNode; }