@angular/common 20.0.0-next.3 → 20.0.0-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common_module.d-BP8xLQft.d.ts +1947 -0
- package/fesm2022/common.mjs +30 -5292
- package/fesm2022/common.mjs.map +1 -1
- package/fesm2022/common_module-DXqIruqL.mjs +4601 -0
- package/fesm2022/common_module-DXqIruqL.mjs.map +1 -0
- package/fesm2022/http/testing.mjs +12 -10
- package/fesm2022/http/testing.mjs.map +1 -1
- package/fesm2022/http.mjs +8 -2901
- package/fesm2022/http.mjs.map +1 -1
- package/fesm2022/location-DL4aRLmc.mjs +637 -0
- package/fesm2022/location-DL4aRLmc.mjs.map +1 -0
- package/fesm2022/module-TRKGK7nU.mjs +2903 -0
- package/fesm2022/module-TRKGK7nU.mjs.map +1 -0
- package/fesm2022/platform_navigation-2iCIwKiv.mjs +24 -0
- package/fesm2022/platform_navigation-2iCIwKiv.mjs.map +1 -0
- package/fesm2022/testing.mjs +20 -18
- package/fesm2022/testing.mjs.map +1 -1
- package/fesm2022/upgrade.mjs +7 -6
- package/fesm2022/upgrade.mjs.map +1 -1
- package/fesm2022/xhr-BdgfMvBr.mjs +45 -0
- package/fesm2022/xhr-BdgfMvBr.mjs.map +1 -0
- package/http/index.d.ts +30 -949
- package/http/testing/index.d.ts +5 -5
- package/index.d.ts +43 -2084
- package/module.d-BJA_GXII.d.ts +926 -0
- package/package.json +3 -3
- package/platform_location.d-BWJDgVlg.d.ts +115 -0
- package/testing/index.d.ts +5 -3
- package/upgrade/index.d.ts +7 -5
- package/xhr.d-Bbgj1reV.d.ts +16 -0
package/http/testing/index.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v20.0.0-next.
|
|
2
|
+
* @license Angular v20.0.0-next.5
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import
|
|
8
|
-
import { HttpRequest, HttpEvent, HttpHeaders } from '@angular/common/http';
|
|
7
|
+
import { H as HttpRequest, a as HttpEvent, b as HttpHeaders, i as HttpClientModule } from '../../module.d-BJA_GXII.js';
|
|
9
8
|
import { Observer } from 'rxjs';
|
|
10
9
|
import * as i0 from '@angular/core';
|
|
11
10
|
import { Provider } from '@angular/core';
|
|
@@ -173,10 +172,11 @@ declare abstract class HttpTestingController {
|
|
|
173
172
|
*/
|
|
174
173
|
declare class HttpClientTestingModule {
|
|
175
174
|
static ɵfac: i0.ɵɵFactoryDeclaration<HttpClientTestingModule, never>;
|
|
176
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<HttpClientTestingModule, never, [typeof
|
|
175
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HttpClientTestingModule, never, [typeof HttpClientModule], never>;
|
|
177
176
|
static ɵinj: i0.ɵɵInjectorDeclaration<HttpClientTestingModule>;
|
|
178
177
|
}
|
|
179
178
|
|
|
180
179
|
declare function provideHttpClientTesting(): Provider[];
|
|
181
180
|
|
|
182
|
-
export { HttpClientTestingModule, HttpTestingController,
|
|
181
|
+
export { HttpClientTestingModule, HttpTestingController, TestRequest, provideHttpClientTesting };
|
|
182
|
+
export type { RequestMatch };
|