ng-implementation/my-workspace/projects/sae-lib/node_modules/@angular/common/xhr.d.d.ts

17 lines
281 B
TypeScript
Raw Normal View History

2025-08-08 10:57:00 +02:00
/**
* @license Angular v20.1.6
* (c) 2010-2025 Google LLC. https://angular.io/
* License: MIT
*/
/**
* A wrapper around the `XMLHttpRequest` constructor.
*
* @publicApi
*/
declare abstract class XhrFactory {
abstract build(): XMLHttpRequest;
}
export { XhrFactory };