UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

10 lines (9 loc) 374 B
import * as React from 'react'; import { HTMLAttributes } from 'react'; export interface OverlayProps extends HTMLAttributes<HTMLElement> { visible: boolean; onTransitionEnd?: () => void; } export declare const useRefresh: () => () => void; declare const Overlay: React.ForwardRefExoticComponent<OverlayProps & React.RefAttributes<Element>>; export default Overlay;