Plumile JS API
    Preparing search index...

    Type Alias PreparedRouteChain<TVariables, TContext>

    Result of preparing a matched route, including the ordered chain of nested active segments.

    type PreparedRouteChain<TVariables extends ParamData, TContext = unknown> = {
        match: RouterMatchedRoute<TVariables> | null;
        routes: PreparedRouteSegments<TContext>;
        segments: PreparedRouteSegments<TContext>;
    }

    Type Parameters

    • TVariables extends ParamData

      Route parameter types extracted from the URL path

    • TContext = unknown
    Index

    Properties

    Properties

    The matched route or null if no match

    Backward-compatible alias kept during the segment-oriented migration

    Ordered active prepared segments from outermost to innermost