UNPKG

react-simple-modal-controller

Version:
9 lines (8 loc) 355 B
import { ModalInfo } from "../types/modal"; import { ModalReducerAction } from "./reducer"; export declare const emitChangeListener: () => void; export declare const dispatchModal: (action: ModalReducerAction) => void; export declare const registerModalStore: { subscribe(listener: () => void): () => void; getSnapshot(): ModalInfo<unknown>[]; };