Reference
AppRouteLinkPathname
Builds the pathname string type for a typed route href.
Signature
type AppRouteLinkPathname = Path extends "/" ? "/" : Path extends `/${infer Segments}` ? `/${AppRouteLinkSegments<Segments>}` : neverReference
Builds the pathname string type for a typed route href.
type AppRouteLinkPathname = Path extends "/" ? "/" : Path extends `/${infer Segments}` ? `/${AppRouteLinkSegments<Segments>}` : never