Interface LocationRoute

Represents a route in the location.

interface LocationRoute {
    is_inactive: boolean;
    is_mounted: boolean;
    is_restoring: boolean;
    path: string;
    query: Record<string, any>;
}

Properties

is_inactive: boolean

Indicates when application is still registered but not used right now.

is_mounted: boolean

Indicates if the route is mounted.

is_restoring: boolean

Indicates if the route is being restored.

path: string

The path of the route.

query: Record<string, any>

The query parameters of the route.