UNPKG
@tech-arelius/api-client
Version:
latest (1.0.0)
1.0.0
Configurable HTTP client with builder pattern for Node.js/TypeScript
@tech-arelius/api-client
/
src
/
types
/
index.ts
5 lines
(4 loc)
•
124 B
text/typescript
View Raw
1
2
3
4
5
/** * HTTP method types */
export
type
HttpMethod =
'GET'
|
'POST'
|
'PUT'
|
'DELETE'
|
'PATCH'
|
'HEAD'
|
'OPTIONS'
;