| 614 | |
| 615 | // XHR patch |
| 616 | interface PatchedXMLHttpRequestConstructor extends XMLHttpRequest { |
| 617 | new (): XMLHttpRequest; |
| 618 | } |
| 619 | |
| 620 | window.XMLHttpRequest = function () { |
| 621 | const xhr = new win.CapacitorWebXMLHttpRequest.constructor(); |
nothing calls this directly
no outgoing calls
no test coverage detected