import { RouteContext } from "https://deno.land/x/oak@v17.1.3/middleware/serve.ts";
The context associated with serve middleware requests on a router.
Constructors
new
RouteContext(context: RouterContext<R, P, S>)Properties
When matching the route, an array of the capturing groups from the regular expression.
readonly
params: PAny parameters parsed from the route when matched.
If the matched route has a name
, the matched route name is provided
here.
Methods
[Symbol.for("Deno.customInspect")](inspect: (value: unknown) => string): string
[Symbol.for("nodejs.util.inspect.custom")](): any
depth: number,
options: any,
inspect: (value: unknown, options?: unknown) => string,