FuncType - v0.8.85
    Preparing search index...

    Type Alias ErrorContext

    Error context information that provides additional metadata about errors. This context is passed to error mapping functions to provide more information about the error that occurred.

    type ErrorContext = {
        originalError: unknown;
        stack?: string;
        timestamp: number;
    }
    Index

    Properties

    originalError: unknown

    The original error that was thrown

    stack?: string

    The stack trace of the error, if available

    timestamp: number

    The timestamp when the error occurred