Skip to main content
Module

x/reno/reno/mod.ts>AugmentedRequest

A thin, testable routing library designed to sit on top of Deno's standard HTTP module
Go to Latest
type alias AugmentedRequest
Re-export
import { type AugmentedRequest } from "https://deno.land/x/reno@v2.0.75/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[]; }