修复一些命名和拼写错误问题,修复一些BUG
This commit is contained in:
12
types/global.d.ts
vendored
12
types/global.d.ts
vendored
@ -19,7 +19,17 @@ declare global {
|
||||
| 'application/x-www-form-urlencoded'
|
||||
| 'multipart/form-data'
|
||||
|
||||
type AxiosMethod = 'get' | 'post' | 'delete' | 'put' | 'GET' | 'POST' | 'DELETE' | 'PUT'
|
||||
type AxiosMethod =
|
||||
| 'get'
|
||||
| 'post'
|
||||
| 'delete'
|
||||
| 'put'
|
||||
| 'patch'
|
||||
| 'GET'
|
||||
| 'POST'
|
||||
| 'DELETE'
|
||||
| 'PUT'
|
||||
| 'PATCH'
|
||||
|
||||
type AxiosResponseType = 'arraybuffer' | 'blob' | 'document' | 'json' | 'text' | 'stream'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user