UNPKG

midwinter

Version:

A next-gen middleware engine built for the WinterCG environments.

5 lines (3 loc) 192 B
type HttpVerb = "get" | "post" | "put" | "patch" | "delete" | "options" | "head"; type HttpMethodInput = HttpVerb | Uppercase<HttpVerb> | (string & {}); export type { HttpMethodInput as H };