| 1 | export interface xhrI { |
| 2 | name: 'xhr'; |
| 3 | method: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'; |
| 4 | url: string | { url: string; data?: any; headers?: any }; |
| 5 | } |
| 6 | export interface xhrResponseI { |
| 7 | finalUrl: string; |
| 8 | responseText: string; |
nothing calls this directly
no outgoing calls
no test coverage detected