Files
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01:00

17 lines
283 B
TypeScript
Executable File

/**
* @license Angular v20.3.11
* (c) 2010-2025 Google LLC. https://angular.dev/
* License: MIT
*/
/**
* A wrapper around the `XMLHttpRequest` constructor.
*
* @publicApi
*/
declare abstract class XhrFactory {
abstract build(): XMLHttpRequest;
}
export { XhrFactory };