Stone.js API
    Preparing search index...

    The navigation intent a router navigator receives.

    Declared structurally rather than imported from @stone-js/router, so this package stays usable without the router (a native application can dispatch intents to a single handler, with no routing at all).

    interface RouterNavigationContext {
        options: Record<string, unknown>;
        path: string;
        replace: boolean;
    }
    Index
    options: Record<string, unknown>
    path: string
    replace: boolean