Documentation
    Preparing search index...

    Result of successful route matching containing route details and extracted parameters

    type MatchedRoute = {
        route: RouteJSON;
        routeKey: string;
        params: Record<string, any>;
        subdomains: Record<string, any>;
    }
    Index

    Properties

    route: RouteJSON

    The matched route definition

    routeKey: string

    A unique key for the looked up route

    params: Record<string, any>

    Route params

    subdomains: Record<string, any>

    Route subdomains (if part of a subdomain)