Flatlogic Bot 33b1653816 V3
2026-02-16 03:42:10 +00:00

16 lines
187 B
Plaintext

// @flow
// Generated using flowgen2
type HttpVerb =
| 'GET'
| 'HEAD'
| 'POST'
| 'PUT'
| 'DELETE'
| 'CONNECT'
| 'OPTIONS'
| 'TRACE'
| 'PATCH';
export type {HttpVerb};