Skip to main content
Module

x/aleph/types.ts>RouterURL

The Full-stack Framework in Deno.
Very Popular
Go to Latest
type alias RouterURL
import { type RouterURL } from "https://deno.land/x/aleph@v0.3.0-alpha.13/types.ts";

The router url object of the routing, you can access it with useRouter() hook.

definition: { readonly baseURL: string; readonly locale: string; readonly pathname: string; readonly pagePath: string; readonly params: Record<string, string>; readonly query: URLSearchParams; push(url: string): void; replace(url: string): void; }