UNPKG

react-simple-modal-controller

Version:
8 lines (7 loc) 303 B
import { ModalInfo } from "../types/modal"; export declare const modal: { openAsync: <V>(Component: ModalInfo["Component"], props?: ModalInfo["props"]) => Promise<V>; open: (Component: ModalInfo["Component"], props?: ModalInfo["props"]) => void; close: () => void; clear: () => void; };