UNPKG

@mui/x-data-grid

Version:

The community edition of the data grid component (MUI X).

9 lines (8 loc) 347 B
import * as React from 'react'; import { GridOverlayProps } from './containers/GridOverlay'; export interface ErrorOverlayProps extends GridOverlayProps { message?: string; hasError: boolean; errorInfo: any; } export declare const ErrorOverlay: React.ForwardRefExoticComponent<ErrorOverlayProps & React.RefAttributes<HTMLDivElement>>;