import { type AugmentedResponse } from "https://deno.land/x/reno@v2.0.105/reno/mod.ts";
The standard response type returned by route handler functions. Essentially the same as std/http's Response, but also exposes cookies as an array of [string, string] tuples.
definition: Response & { cookies?: [string, string][]; }