xhr.d-D_1kTQR5.d.ts 282 B

12345678910111213141516
  1. /**
  2. * @license Angular v19.2.13
  3. * (c) 2010-2025 Google LLC. https://angular.io/
  4. * License: MIT
  5. */
  6. /**
  7. * A wrapper around the `XMLHttpRequest` constructor.
  8. *
  9. * @publicApi
  10. */
  11. declare abstract class XhrFactory {
  12. abstract build(): XMLHttpRequest;
  13. }
  14. export { XhrFactory };