@micro-router
    Preparing search index...

    Interface INavigator

    interface INavigator {
        get location(): Location;
        go(offset: number): void;
        push(path: string | ConstPath): void;
        push<P extends Path<string, any>>(path: P, params: DataOfPath<P>): void;
        replace(path: string | ConstPath): void;
        replace<P extends Path<string, any>>(path: P, params: DataOfPath<P>): void;
        start(): void;
        stop(): void;
    }

    Implemented by

    Index

    Accessors

    Methods

    Accessors

    Methods

    • Parameters

      • offset: number

      Returns void

    • Parameters

      Returns void

    • Type Parameters

      • P extends Path<string, any>

      Parameters

      Returns void

    • Parameters

      Returns void

    • Type Parameters

      • P extends Path<string, any>

      Parameters

      Returns void

    • Start listening and responding to history events. <NavigatorProvider> will call this automatically.

      Returns void

    • Stop listening to history events. <NavigatorProvider> will call this automatically when it is unmounted.

      Returns void