Skip to main content
Module

x/fresh/server.ts>PageProps

The next-gen web framework.
Extremely Popular
Go to Latest
interface PageProps
import { type PageProps } from "https://deno.land/x/fresh@1.0.2/server.ts";

Type Parameters

optional
T = any

Properties

url: URL

The URL of the request that resulted in this page being rendered.

route: string

The route matcher (e.g. /blog/:id) that the request matched for this page to be rendered.

params: Record<string, string>

The parameters that were matched from the route.

For the /foo/:bar route with url /foo/123, params would be { bar: '123' }. For a route with no matchers, params would be {}. For a wildcard route, like /foo/:path* with url /foo/bar/baz, params would be { path: 'bar/baz' }.

data: T

Additional data passed into HandlerContext.render. Defaults to undefined.