mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-22 18:26:01 +08:00
16 lines
187 B
Plaintext
16 lines
187 B
Plaintext
// @flow
|
|
// Generated using flowgen2
|
|
|
|
type HttpVerb =
|
|
| 'GET'
|
|
| 'HEAD'
|
|
| 'POST'
|
|
| 'PUT'
|
|
| 'DELETE'
|
|
| 'CONNECT'
|
|
| 'OPTIONS'
|
|
| 'TRACE'
|
|
| 'PATCH';
|
|
|
|
export type {HttpVerb};
|