Plumile JS API
    Preparing search index...

    Type Alias RouterMatchedRoute<TVariables>

    Represents a matched route with extracted parameters and metadata.

    type RouterMatchedRoute<TVariables extends ParamData> = {
        match: Match<TVariables>;
        params: TVariables;
        path: string;
        route: FlatRoute<TVariables>;
    }

    Type Parameters

    • TVariables extends ParamData

      Route parameter types extracted from the URL path

    Index

    Properties

    Properties

    match: Match<TVariables>

    The match result from path-to-regexp

    params: TVariables

    Extracted parameters from the URL path

    path: string

    The matched path string

    The flat route that was matched