Files
framit/app/types/http-method.ts

20 lines
240 B
TypeScript
Raw Normal View History

2025-11-19 22:03:35 +01:00
export type HttpMethod =
| 'delete'
| 'get'
| 'GET'
| 'HEAD'
| 'PATCH'
| 'POST'
| 'PUT'
| 'DELETE'
| 'CONNECT'
| 'OPTIONS'
| 'TRACE'
| 'head'
| 'patch'
| 'post'
| 'put'
| 'connect'
| 'options'
| 'trace';