Skip to main content
Module

x/fastro/server/types.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.67.0/server/types.ts";

Properties

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