@alifd/overlay
Version:
overlay base component
11 lines (10 loc) • 361 B
TypeScript
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;