import { RouteContext } from "https://dotland-vbqsvsrpfncg.deno-staging.dev/x/oak@v17.1.2/middleware/serve.ts?s=RouteContext";
The context associated with serve middleware requests on a router.
Constructors
new
RouteContext(context: RouterContext<R, P, S>)[src]Type Parameters
R extends string[src]
optional
P extends RouteParams<R> = RouteParams<R>[src]Properties
readonly
captures: string[][src]When matching the route, an array of the capturing groups from the regular expression.
readonly
routeName: string | undefined[src]If the matched route has a name
, the matched route name is provided
here.
readonly
routerPath: string | undefined[src]Overrides the matched path for future route middleware, when a
routerPath
option is not defined on the Router
options.
Methods
[Symbol.for("Deno.customInspect")](inspect: (value: unknown) => string): string[src]
[Symbol.for("nodejs.util.inspect.custom")](): any[src]
depth: number,
options: any,
inspect: (value: unknown, options?: unknown) => string,