Skip to main content
Module

x/drash/src/types.ts>HttpMethodName

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

The allowed types for an HTTP method on a resource.

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