Module

x/drash/mod.ts>Types.HttpMethodName

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

The allowed types for an HTTP method on a resource.

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