Reference

AppRouteLinkPathname

Builds the pathname string type for a typed route href.

Signature

type AppRouteLinkPathname = Path extends "/" ? "/" : Path extends `/${infer Segments}` ? `/${AppRouteLinkSegments<Segments>}` : never