Reference
RegisteredAppRoutePath
Extracts registered route paths from `AppRouteDeclarations`.
Signature
type RegisteredAppRoutePath = AppRouteDeclarations extends { path: infer Path } ? Extract<Path, `/${string}`> : neverReference
Extracts registered route paths from `AppRouteDeclarations`.
type RegisteredAppRoutePath = AppRouteDeclarations extends { path: infer Path } ? Extract<Path, `/${string}`> : never