Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/hex/src/service/deps.ts>oak.RouterMiddleware

An ecosystem delivering practices, philosophy and portability.
Go to Latest
interface oak.RouterMiddleware
import { type oak } from "https://deno.land/x/hex@0.5.15/src/service/deps.ts";
const { RouterMiddleware } = oak;

Type Parameters

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

Call Signatures

(context: RouterContext<R, P, S>, next: () => Promise<unknown>): Promise<unknown> | unknown

Properties

optional
param: keyof P

For route parameter middleware, the param key for this parameter will be set.

optional
router: Router<any>