UNPKG

opendash

Version:

open.DASH data visualization framework

15 lines (14 loc) 467 B
import * as React from "react"; import { ErrorBoundaryPropsInterface } from ".."; export declare class ErrorBoundary extends React.Component<ErrorBoundaryPropsInterface> { state: { error: Error; }; resetState: (goHome?: boolean) => any; static getDerivedStateFromError(error: any): { error: any; }; componentDidUpdate(prevProps: any): void; componentDidCatch(error: any, info: any): void; render(): {}; }