import { type AugmentedRequest } from "https://deno.land/x/reno@v2.0.105/reno/mod.ts";
The standard request type used througout Reno, which is passed to user-defined route handler functions. Mostly identical to std/http's ServerRequest, except the inclusion of Reno-specific props for ease of use.
definition: Request & { pathname: string; queryParams: URLSearchParams; routeParams: string[]; }