@resistdesign/voltra
    Preparing search index...

    Type Alias CreateUniversalAdapterOptions

    type CreateUniversalAdapterOptions = {
        ingress?: UniversalRouteIngress;
        initialPath?: string;
        strategy?: UniversalRouteStrategy;
    }
    Index

    Properties

    Optional ingress hook for native strategy.

    Use this to bridge deep-link systems into the adapter.

    initialPath?: string

    Initial path used by native strategy memory history.

    Default: "/".

    Runtime strategy selection.

    • "auto": use web when DOM + History API exist, else native.
    • "web": force browser history.
    • "native": force in-memory history.

    Default: "auto".