16 lines
281 B
TypeScript
Executable file
16 lines
281 B
TypeScript
Executable file
/**
|
|
* @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 };
|