The ParsedLocation type represents a parsed location in TanStack Router. It contains a lot of useful information about the current location, including the pathname, search params, hash, location state, and route masking information.
interface ParsedLocation {
href: string
pathname: string
search: TFullSearchSchema
searchStr: string
state: HistoryState
hash: string
maskedLocation?: ParsedLocation
unmaskOnReload?: boolean
}
interface ParsedLocation {
href: string
pathname: string
search: TFullSearchSchema
searchStr: string
state: HistoryState
hash: string
maskedLocation?: ParsedLocation
unmaskOnReload?: boolean
}
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.