interface Routeimport { type Route } from "https://dotland-vbqsvsrpfncg.deno-staging.dev/x/oak@v17.1.2/router.ts?p=prototype.post&s=Route";The internal abstraction of a route used by the oak Router. Type ParametersR extends string[src]optionalP extends RouteParams<R> = RouteParams<R>[src]optionalS extends State = Record<string, any>[src]Propertiesmethods: HTTPMethods[][src]The HTTP methods that this route handles. middleware: RouterMiddleware<R, P, S>[][src]The middleware that will be applied to this route. optionalname: string[src]An optional name for the route. options: LayerOptions[src]Options that were used to create the route. paramNames: (keyof P)[][src]The parameters that are identified in the route that will be parsed out on matched requests. path: string[src]The path that this route manages. regexp: RegExp[src]The regular expression used for matching and parsing parameters for the route.