Skip to main content
Module

x/drash/tests/deps.ts>Drash.Types.HttpMethodName

A microframework for Deno's HTTP server with zero third-party dependencies
Go to Latest
type alias Drash.Types.HttpMethodName
import { type Drash } from "https://deno.land/x/drash@v2.7.0/tests/deps.ts";
const { HttpMethodName } = Drash.Types;

The allowed types for an HTTP method on a resource.

definition:
| "CONNECT"
| "DELETE"
| "GET"
| "HEAD"
| "OPTIONS"
| "PATCH"
| "POST"
| "PUT"
| "TRACE"