Stone.js API
    Preparing search index...

    The resolved navigation intent handed to a RouterNavigator.

    The router has already done the platform-independent work: a named route has been generated into a path, so the navigator only performs the platform's effect.

    interface NavigationContext {
        options: Partial<NavigateOptions>;
        path: string;
        replace: boolean;
    }
    Index
    options: Partial<NavigateOptions>

    The original navigation options (route name, params, query, hash).

    path: string

    The resolved path to navigate to.

    replace: boolean

    Whether to replace the current entry instead of pushing a new one.