mirror of https://github.com/ghostfolio/ghostfolio
2 changed files with 18 additions and 4 deletions
@ -1,5 +1,16 @@ |
|||||
|
export type HttpRequestMethod = |
||||
|
| 'CONNECT' |
||||
|
| 'DELETE' |
||||
|
| 'GET' |
||||
|
| 'HEAD' |
||||
|
| 'OPTIONS' |
||||
|
| 'PATCH' |
||||
|
| 'POST' |
||||
|
| 'PUT' |
||||
|
| 'TRACE'; |
||||
|
|
||||
export interface WebFetchDomain { |
export interface WebFetchDomain { |
||||
domain: string; |
domain: string; |
||||
methods: string[]; |
methods: HttpRequestMethod[]; |
||||
responseContentType: string; |
responseContentType: string; |
||||
} |
} |
||||
|
|||||
Loading…
Reference in new issue