type alias RouterURLimport { type RouterURL } from "https://dotland.deno.dev/x/aleph@v0.3.0-alpha.33/types.ts"; The router url object of the routing, you can access it with useRouter() hook. definition: { readonly basePath: string; readonly routePath: string; readonly locale: string; readonly pathname: string; readonly params: Record<string, string>; readonly query: URLSearchParams; toString(): string; push(url: string): void; replace(url: string): void; }