types/src/http.d.ts

21 lines
196 B
TypeScript

/** */
export type HttpVerb
= 'GET'
| 'HEAD'
| 'POST'
| 'PUT'
| 'DELETE'
| 'OPTIONS'
;
/** */
export type HttpVerbExtended
= HttpVerb
| 'PATCH'
| 'QUERY'
| 'CONNECT'
| 'TRACE'
;