xuxiaobo-bobo 842b34b5ca 0218
2024-02-18 15:40:48 +08:00

16 lines
187 B
Plaintext

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