Plumile JS API
    Preparing search index...

    Type Alias MatchedRoute<TVariables>

    Represents a matched route with regex match result.

    type MatchedRoute<TVariables extends ParamData> = {
        match: RegExpExecArray;
        route: FlatRoute<TVariables>;
    }

    Type Parameters

    • TVariables extends ParamData

      Route parameter types extracted from the URL path

    Index

    Properties

    Properties

    match: RegExpExecArray

    The regex match result

    The flat route that was matched