Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
21 lines
1.2 KiB
TypeScript
21 lines
1.2 KiB
TypeScript
import type { ErrorInfo } from 'react';
|
|
declare global {
|
|
var __next_log_error__: undefined | ((err: unknown) => void);
|
|
}
|
|
type RSCErrorHandler = (err: unknown) => string | undefined;
|
|
type SSRErrorHandler = (err: unknown, errorInfo?: ErrorInfo) => string | undefined;
|
|
export type DigestedError = Error & {
|
|
digest: string;
|
|
environmentName?: string;
|
|
};
|
|
/**
|
|
* Returns a digest for well-known Next.js errors, otherwise `undefined`. If a
|
|
* digest is returned this also means that the error does not need to be
|
|
* reported.
|
|
*/
|
|
export declare function getDigestForWellKnownError(error: unknown): string | undefined;
|
|
export declare function createReactServerErrorHandler(shouldFormatError: boolean, isBuildTimePrerendering: boolean, reactServerErrors: Map<string, DigestedError>, onReactServerRenderError: (err: DigestedError, silenceLog: boolean) => void, spanToRecordOn?: any): RSCErrorHandler;
|
|
export declare function createHTMLErrorHandler(shouldFormatError: boolean, isBuildTimePrerendering: boolean, reactServerErrors: Map<string, DigestedError>, allCapturedErrors: Array<unknown>, onHTMLRenderSSRError: (err: DigestedError, errorInfo?: ErrorInfo) => void, spanToRecordOn?: any): SSRErrorHandler;
|
|
export declare function isUserLandError(err: any): boolean;
|
|
export {};
|