react-timeline-scheduler
Version:
A highly customizable timeline scheduler for managing production tasks in React applications.
12 lines (11 loc) • 520 B
TypeScript
import { default as React } from 'react';
import { ErrorBoundaryProps, ErrorBoundaryState } from '../../../types';
export declare class ErrorBoundary extends React.Component<ErrorBoundaryProps, ErrorBoundaryState> {
constructor(props: any);
static getDerivedStateFromError(error: any): {
hasError: boolean;
error: any;
};
componentDidCatch(error: any, errorInfo: any): void;
render(): string | number | boolean | Iterable<React.ReactNode> | import("react/jsx-runtime").JSX.Element;
}