UNPKG

@jigoooo/shared-ui

Version:

A reusable React component library and design system with TypeScript support, built on Vite for seamless integration and optimized performance.

8 lines (7 loc) 260 B
import { RefObject } from 'react'; export declare function useBottomSheetController({ modalRef, isOpen, onClose, useHistory, }: { modalRef: RefObject<HTMLDivElement | null>; isOpen: boolean; onClose: () => void; useHistory?: boolean; }): void;