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

Type Parameters

  • Path extends string