/opt/canhelp/node_modules/next/dist/client/components/errors
NameSizeModeActions
graceful-degrade-boundary.d.ts8700644editdlrm
graceful-degrade-boundary.js27460644editdlrm
graceful-degrade-boundary.js.map39500644editdlrm
root-error-boundary.d.ts2730644editdlrm
root-error-boundary.js17880644editdlrm
root-error-boundary.js.map16940644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/client/components/errors/graceful-degrade-boundary.d.ts (870B)
import { Component, type ReactNode } from 'react'; interface ErrorBoundaryProps { children: ReactNode; } interface ErrorBoundaryState { hasError: boolean; } export declare class GracefulDegradeBoundary extends Component { private rootHtml; private htmlAttributes; private htmlRef; constructor(props: ErrorBoundaryProps); static getDerivedStateFromError(_: unknown): ErrorBoundaryState; componentDidMount(): void; render(): string | number | bigint | boolean | Iterable | Promise> | import("react").ReactPortal | Iterable | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined; } export default GracefulDegradeBoundary;