Skip to main content
Module

x/fastro/types.d.ts>HttpRequest

Fast and simple web application framework for deno
Go to Latest
class HttpRequest
extends Request
import { HttpRequest } from "https://deno.land/x/fastro@v0.70.5/types.d.ts";

Index Signatures

[key: string]: any

Properties

container: () => Container
delete: (key: string) => void
get: <T>(key: string) => T | null
match: URLPatternResult | null
params: (name?: string) => Record<string, string> | string
query: (name?: string) => Record<string, string> | string | null
set: <T>(
key: string,
value: T,
options?: SetOptions,
) => void