Skip to main content
Module

x/aqua/aqua.ts>Request

A minimal and fast 🏃 web framework for Deno
Go to Latest
interface Request
import { type Request } from "https://deno.land/x/aqua@v1.2.0/aqua.ts";

Properties

url: string
method: Method
headers: Record<string, string>
query: Record<string, string>
body: Record<string,
| string
| number
| boolean
| null
| object
>
files: Record<string, File>
cookies: Record<string, string>
parameters: Record<string, string>
matches: string[]