UNPKG

@alifd/overlay

Version:
11 lines (10 loc) 361 B
import InternalOverlay from './overlay'; import Popup from './popup'; import OverlayContext from './overlay-context'; type InternalOverlayType = typeof InternalOverlay; interface OverlayInterface extends InternalOverlayType { Popup: typeof Popup; OverlayContext: typeof OverlayContext; } declare const Overlay: OverlayInterface; export default Overlay;