React Router API Reference
    Preparing search index...

    Type Alias PathParam<Path>

    PathParam: Path extends "*"
    | "/*"
        ? "*"
        : Path extends `${infer Rest}/*`
            ? "*"
            | _PathParam<Rest>
            : _PathParam<Path>

    Type Parameters

    • Path extends string