UNPKG

react-error-boundary

Version:

Simple reusable React error boundary component

7 lines (6 loc) 234 B
export type ErrorBoundaryContextType = { didCatch: boolean; error: any; resetErrorBoundary: (...args: any[]) => void; }; export declare const ErrorBoundaryContext: import("react").Context<ErrorBoundaryContextType | null>;