valhalla-browser API
    Preparing search index...

    Interface SerializedRoutingError

    Serializable error payload used across the worker boundary.

    interface SerializedRoutingError {
        code: RoutingErrorCode;
        message: string;
        nativeCode?: number;
        retryable: boolean;
    }
    Index

    Stable SDK failure category.

    message: string

    Human-readable context; use code for programmatic decisions.

    nativeCode?: number

    Original native Valhalla error number, when applicable.

    retryable: boolean

    Whether the underlying failure is transient.