UNPKG

@gorhom/bottom-sheet

Version:

A performant interactive bottom sheet with fully configurable options 🚀

15 lines (12 loc) • 331 B
import type { ReactNode } from 'react'; import type { BottomSheetModalPrivateMethods } from '../bottomSheetModal'; export interface BottomSheetModalRef { key: string; ref: { current: BottomSheetModalPrivateMethods; }; willUnmount: boolean; } export interface BottomSheetModalProviderProps { children?: ReactNode; }