UNPKG

@gorhom/bottom-sheet

Version:

A performant interactive bottom sheet with fully configurable options 🚀

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