belgattitude/httpx

View on GitHub
packages/assert/src/http.types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type HttpMethod =
  | 'GET'
  | 'POST'
  | 'HEAD'
  | 'PUT'
  | 'DELETE'
  | 'CONNECT'
  | 'OPTIONS'
  | 'PATCH'
  | 'TRACE';