Skip to main content
Module

x/aleph/types.d.ts>RouterURL

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

The router URL object of the routing.

definition: { readonly basePath: string; readonly routePath: string; readonly locale: string; readonly defaultLocale: string; readonly locales: string[]; readonly pathname: string; readonly params: Record<string, string>; readonly query: URLSearchParams; toString(): string; push(url: string): void; replace(url: string): void; }