@resistdesign/voltra
    Preparing search index...

    Type Alias RouteRuntimeIntegration

    Optional runtime integration for root Route provider mode.

    Use this to layer platform-specific side effects (for example, native hardware back wiring) without coupling core app routing to a platform API.

    type RouteRuntimeIntegration = {
        setup: (adapter: RouteAdapter) => void | (() => void);
    }
    Index

    Properties

    Properties

    setup: (adapter: RouteAdapter) => void | (() => void)

    Start integration against the active adapter.

    Return a cleanup function when teardown is required.