videosphere
    Preparing search index...

    Interface ErrorProps

    Defines the props passed by Next.js to the global error boundary component.

    interface ErrorProps {
        error: Error & { digest?: string };
        reset: () => void;
    }
    Index

    Properties

    Properties

    error: Error & { digest?: string }
    reset: () => void