Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/hex/src/fw/service/deps.ts>oak.Route

An ecosystem delivering practices, philosophy and portability. Powered By Deno and JavaScript.
Go to Latest
interface oak.Route
import { type oak } from "https://deno.land/x/hex@0.6.3/src/fw/service/deps.ts";
const { Route } = oak;

Type Parameters

R extends string
optional
P extends RouteParams<R> = RouteParams<R>
optional
S extends State = Record<string, any>

Properties

methods: HTTPMethods[]

The HTTP methods that this route handles.

middleware: RouterMiddleware<R, P, S>[]

The middleware that will be applied to this route.

optional
name: string

An optional name for the route.

options: LayerOptions

Options that were used to create the route.

paramNames: (keyof P)[]

The parameters that are identified in the route that will be parsed out on matched requests.

path: string

The path that this route manages.

regexp: RegExp

The regular expression used for matching and parsing parameters for the route.