valhalla-browser API
    Preparing search index...

    Interface RoutingErrorOptions

    Additional error context, including transient retryability and native error code.

    interface RoutingErrorOptions {
        cause?: unknown;
        nativeCode?: number;
        retryable?: boolean;
    }
    Index
    cause?: unknown

    Local underlying exception; omitted from serialization across the worker boundary.

    nativeCode?: number

    Original native Valhalla error number, when applicable.

    retryable?: boolean

    Whether this is a transient failure; defaults to false.