generated from templates/typescript-types
21 lines
196 B
TypeScript
21 lines
196 B
TypeScript
|
|
/** */
|
|
export type HttpVerb
|
|
= 'GET'
|
|
| 'HEAD'
|
|
| 'POST'
|
|
| 'PUT'
|
|
| 'DELETE'
|
|
| 'OPTIONS'
|
|
;
|
|
|
|
/** */
|
|
export type HttpVerbExtended
|
|
= HttpVerb
|
|
| 'PATCH'
|
|
| 'QUERY'
|
|
| 'CONNECT'
|
|
| 'TRACE'
|
|
;
|
|
|