lingjing/node_modules/next/dist/client/react-client-callbacks/error-boundary-callbacks.d.ts
2026-02-23 09:51:43 +00:00

6 lines
241 B
TypeScript

import type { ErrorInfo } from 'react';
export declare function onCaughtError(thrownValue: unknown, errorInfo: ErrorInfo & {
errorBoundary?: React.Component;
}): void;
export declare function onUncaughtError(thrownValue: unknown): void;