@angular/common 20.1.1 → 20.2.0-next.1

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/http/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v20.1.1
2
+ * @license Angular v20.2.0-next.1
3
3
  * (c) 2010-2025 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -127,9 +127,12 @@ declare class HttpClient {
127
127
  cache?: RequestCache;
128
128
  mode?: RequestMode;
129
129
  redirect?: RequestRedirect;
130
+ referrer?: string;
131
+ integrity?: string;
130
132
  transferCache?: {
131
133
  includeHeaders?: string[];
132
134
  } | boolean;
135
+ timeout?: number;
133
136
  }): Observable<ArrayBuffer>;
134
137
  /**
135
138
  * Constructs a request that interprets the body as a blob and returns
@@ -156,9 +159,12 @@ declare class HttpClient {
156
159
  cache?: RequestCache;
157
160
  mode?: RequestMode;
158
161
  redirect?: RequestRedirect;
162
+ referrer?: string;
163
+ integrity?: string;
159
164
  transferCache?: {
160
165
  includeHeaders?: string[];
161
166
  } | boolean;
167
+ timeout?: number;
162
168
  }): Observable<Blob>;
163
169
  /**
164
170
  * Constructs a request that interprets the body as a text string and
@@ -185,9 +191,12 @@ declare class HttpClient {
185
191
  cache?: RequestCache;
186
192
  mode?: RequestMode;
187
193
  redirect?: RequestRedirect;
194
+ referrer?: string;
195
+ integrity?: string;
188
196
  transferCache?: {
189
197
  includeHeaders?: string[];
190
198
  } | boolean;
199
+ timeout?: number;
191
200
  }): Observable<string>;
192
201
  /**
193
202
  * Constructs a request that interprets the body as an `ArrayBuffer` and returns the
@@ -215,9 +224,12 @@ declare class HttpClient {
215
224
  cache?: RequestCache;
216
225
  mode?: RequestMode;
217
226
  redirect?: RequestRedirect;
227
+ referrer?: string;
228
+ integrity?: string;
218
229
  transferCache?: {
219
230
  includeHeaders?: string[];
220
231
  } | boolean;
232
+ timeout?: number;
221
233
  }): Observable<HttpEvent<ArrayBuffer>>;
222
234
  /**
223
235
  * Constructs a request that interprets the body as a `Blob` and returns
@@ -245,9 +257,12 @@ declare class HttpClient {
245
257
  cache?: RequestCache;
246
258
  mode?: RequestMode;
247
259
  redirect?: RequestRedirect;
260
+ referrer?: string;
261
+ integrity?: string;
248
262
  transferCache?: {
249
263
  includeHeaders?: string[];
250
264
  } | boolean;
265
+ timeout?: number;
251
266
  }): Observable<HttpEvent<Blob>>;
252
267
  /**
253
268
  * Constructs a request which interprets the body as a text string and returns the full event
@@ -275,9 +290,12 @@ declare class HttpClient {
275
290
  cache?: RequestCache;
276
291
  mode?: RequestMode;
277
292
  redirect?: RequestRedirect;
293
+ referrer?: string;
294
+ integrity?: string;
278
295
  transferCache?: {
279
296
  includeHeaders?: string[];
280
297
  } | boolean;
298
+ timeout?: number;
281
299
  }): Observable<HttpEvent<string>>;
282
300
  /**
283
301
  * Constructs a request which interprets the body as a JavaScript object and returns the full
@@ -305,9 +323,12 @@ declare class HttpClient {
305
323
  cache?: RequestCache;
306
324
  mode?: RequestMode;
307
325
  redirect?: RequestRedirect;
326
+ referrer?: string;
327
+ integrity?: string;
308
328
  transferCache?: {
309
329
  includeHeaders?: string[];
310
330
  } | boolean;
331
+ timeout?: number;
311
332
  }): Observable<HttpEvent<any>>;
312
333
  /**
313
334
  * Constructs a request which interprets the body as a JavaScript object and returns the full
@@ -335,9 +356,12 @@ declare class HttpClient {
335
356
  cache?: RequestCache;
336
357
  mode?: RequestMode;
337
358
  redirect?: RequestRedirect;
359
+ referrer?: string;
360
+ integrity?: string;
338
361
  transferCache?: {
339
362
  includeHeaders?: string[];
340
363
  } | boolean;
364
+ timeout?: number;
341
365
  }): Observable<HttpEvent<R>>;
342
366
  /**
343
367
  * Constructs a request which interprets the body as an `ArrayBuffer`
@@ -364,9 +388,12 @@ declare class HttpClient {
364
388
  cache?: RequestCache;
365
389
  mode?: RequestMode;
366
390
  redirect?: RequestRedirect;
391
+ referrer?: string;
392
+ integrity?: string;
367
393
  transferCache?: {
368
394
  includeHeaders?: string[];
369
395
  } | boolean;
396
+ timeout?: number;
370
397
  }): Observable<HttpResponse<ArrayBuffer>>;
371
398
  /**
372
399
  * Constructs a request which interprets the body as a `Blob` and returns the full `HttpResponse`.
@@ -392,9 +419,12 @@ declare class HttpClient {
392
419
  cache?: RequestCache;
393
420
  mode?: RequestMode;
394
421
  redirect?: RequestRedirect;
422
+ referrer?: string;
423
+ integrity?: string;
395
424
  transferCache?: {
396
425
  includeHeaders?: string[];
397
426
  } | boolean;
427
+ timeout?: number;
398
428
  }): Observable<HttpResponse<Blob>>;
399
429
  /**
400
430
  * Constructs a request which interprets the body as a text stream and returns the full
@@ -421,9 +451,12 @@ declare class HttpClient {
421
451
  cache?: RequestCache;
422
452
  mode?: RequestMode;
423
453
  redirect?: RequestRedirect;
454
+ referrer?: string;
455
+ integrity?: string;
424
456
  transferCache?: {
425
457
  includeHeaders?: string[];
426
458
  } | boolean;
459
+ timeout?: number;
427
460
  }): Observable<HttpResponse<string>>;
428
461
  /**
429
462
  * Constructs a request which interprets the body as a JavaScript object and returns the full
@@ -451,6 +484,12 @@ declare class HttpClient {
451
484
  cache?: RequestCache;
452
485
  mode?: RequestMode;
453
486
  redirect?: RequestRedirect;
487
+ referrer?: string;
488
+ integrity?: string;
489
+ transferCache?: {
490
+ includeHeaders?: string[];
491
+ } | boolean;
492
+ timeout?: number;
454
493
  }): Observable<HttpResponse<Object>>;
455
494
  /**
456
495
  * Constructs a request which interprets the body as a JavaScript object and returns
@@ -477,6 +516,8 @@ declare class HttpClient {
477
516
  cache?: RequestCache;
478
517
  mode?: RequestMode;
479
518
  redirect?: RequestRedirect;
519
+ referrer?: string;
520
+ integrity?: string;
480
521
  transferCache?: {
481
522
  includeHeaders?: string[];
482
523
  } | boolean;
@@ -506,9 +547,12 @@ declare class HttpClient {
506
547
  cache?: RequestCache;
507
548
  mode?: RequestMode;
508
549
  redirect?: RequestRedirect;
550
+ referrer?: string;
551
+ integrity?: string;
509
552
  transferCache?: {
510
553
  includeHeaders?: string[];
511
554
  } | boolean;
555
+ timeout?: number;
512
556
  }): Observable<Object>;
513
557
  /**
514
558
  * Constructs a request which interprets the body as a JavaScript object
@@ -535,9 +579,12 @@ declare class HttpClient {
535
579
  cache?: RequestCache;
536
580
  mode?: RequestMode;
537
581
  redirect?: RequestRedirect;
582
+ referrer?: string;
583
+ integrity?: string;
538
584
  transferCache?: {
539
585
  includeHeaders?: string[];
540
586
  } | boolean;
587
+ timeout?: number;
541
588
  }): Observable<R>;
542
589
  /**
543
590
  * Constructs a request where response type and requested observable are not known statically.
@@ -563,9 +610,12 @@ declare class HttpClient {
563
610
  cache?: RequestCache;
564
611
  mode?: RequestMode;
565
612
  redirect?: RequestRedirect;
613
+ referrer?: string;
614
+ integrity?: string;
566
615
  transferCache?: {
567
616
  includeHeaders?: string[];
568
617
  } | boolean;
618
+ timeout?: number;
569
619
  }): Observable<any>;
570
620
  /**
571
621
  * Constructs a `DELETE` request that interprets the body as an `ArrayBuffer`
@@ -590,6 +640,8 @@ declare class HttpClient {
590
640
  cache?: RequestCache;
591
641
  mode?: RequestMode;
592
642
  redirect?: RequestRedirect;
643
+ referrer?: string;
644
+ integrity?: string;
593
645
  body?: any | null;
594
646
  }): Observable<ArrayBuffer>;
595
647
  /**
@@ -615,6 +667,9 @@ declare class HttpClient {
615
667
  cache?: RequestCache;
616
668
  mode?: RequestMode;
617
669
  redirect?: RequestRedirect;
670
+ referrer?: string;
671
+ integrity?: string;
672
+ timeout?: number;
618
673
  body?: any | null;
619
674
  }): Observable<Blob>;
620
675
  /**
@@ -640,6 +695,9 @@ declare class HttpClient {
640
695
  cache?: RequestCache;
641
696
  mode?: RequestMode;
642
697
  redirect?: RequestRedirect;
698
+ referrer?: string;
699
+ integrity?: string;
700
+ timeout?: number;
643
701
  body?: any | null;
644
702
  }): Observable<string>;
645
703
  /**
@@ -666,6 +724,9 @@ declare class HttpClient {
666
724
  cache?: RequestCache;
667
725
  mode?: RequestMode;
668
726
  redirect?: RequestRedirect;
727
+ referrer?: string;
728
+ integrity?: string;
729
+ timeout?: number;
669
730
  body?: any | null;
670
731
  }): Observable<HttpEvent<ArrayBuffer>>;
671
732
  /**
@@ -692,6 +753,9 @@ declare class HttpClient {
692
753
  cache?: RequestCache;
693
754
  mode?: RequestMode;
694
755
  redirect?: RequestRedirect;
756
+ referrer?: string;
757
+ integrity?: string;
758
+ timeout?: number;
695
759
  body?: any | null;
696
760
  }): Observable<HttpEvent<Blob>>;
697
761
  /**
@@ -718,6 +782,9 @@ declare class HttpClient {
718
782
  cache?: RequestCache;
719
783
  mode?: RequestMode;
720
784
  redirect?: RequestRedirect;
785
+ referrer?: string;
786
+ integrity?: string;
787
+ timeout?: number;
721
788
  body?: any | null;
722
789
  }): Observable<HttpEvent<string>>;
723
790
  /**
@@ -744,6 +811,9 @@ declare class HttpClient {
744
811
  cache?: RequestCache;
745
812
  mode?: RequestMode;
746
813
  redirect?: RequestRedirect;
814
+ referrer?: string;
815
+ integrity?: string;
816
+ timeout?: number;
747
817
  body?: any | null;
748
818
  }): Observable<HttpEvent<Object>>;
749
819
  /**
@@ -770,6 +840,9 @@ declare class HttpClient {
770
840
  cache?: RequestCache;
771
841
  mode?: RequestMode;
772
842
  redirect?: RequestRedirect;
843
+ referrer?: string;
844
+ integrity?: string;
845
+ timeout?: number;
773
846
  body?: any | null;
774
847
  }): Observable<HttpEvent<T>>;
775
848
  /**
@@ -795,6 +868,9 @@ declare class HttpClient {
795
868
  cache?: RequestCache;
796
869
  mode?: RequestMode;
797
870
  redirect?: RequestRedirect;
871
+ referrer?: string;
872
+ integrity?: string;
873
+ timeout?: number;
798
874
  body?: any | null;
799
875
  }): Observable<HttpResponse<ArrayBuffer>>;
800
876
  /**
@@ -820,6 +896,9 @@ declare class HttpClient {
820
896
  cache?: RequestCache;
821
897
  mode?: RequestMode;
822
898
  redirect?: RequestRedirect;
899
+ referrer?: string;
900
+ integrity?: string;
901
+ timeout?: number;
823
902
  body?: any | null;
824
903
  }): Observable<HttpResponse<Blob>>;
825
904
  /**
@@ -845,6 +924,9 @@ declare class HttpClient {
845
924
  cache?: RequestCache;
846
925
  mode?: RequestMode;
847
926
  redirect?: RequestRedirect;
927
+ referrer?: string;
928
+ integrity?: string;
929
+ timeout?: number;
848
930
  body?: any | null;
849
931
  }): Observable<HttpResponse<string>>;
850
932
  /**
@@ -871,6 +953,9 @@ declare class HttpClient {
871
953
  cache?: RequestCache;
872
954
  mode?: RequestMode;
873
955
  redirect?: RequestRedirect;
956
+ referrer?: string;
957
+ integrity?: string;
958
+ timeout?: number;
874
959
  body?: any | null;
875
960
  }): Observable<HttpResponse<Object>>;
876
961
  /**
@@ -896,6 +981,9 @@ declare class HttpClient {
896
981
  cache?: RequestCache;
897
982
  mode?: RequestMode;
898
983
  redirect?: RequestRedirect;
984
+ referrer?: string;
985
+ integrity?: string;
986
+ timeout?: number;
899
987
  body?: any | null;
900
988
  }): Observable<HttpResponse<T>>;
901
989
  /**
@@ -921,6 +1009,9 @@ declare class HttpClient {
921
1009
  cache?: RequestCache;
922
1010
  mode?: RequestMode;
923
1011
  redirect?: RequestRedirect;
1012
+ referrer?: string;
1013
+ integrity?: string;
1014
+ timeout?: number;
924
1015
  body?: any | null;
925
1016
  }): Observable<Object>;
926
1017
  /**
@@ -946,6 +1037,9 @@ declare class HttpClient {
946
1037
  cache?: RequestCache;
947
1038
  mode?: RequestMode;
948
1039
  redirect?: RequestRedirect;
1040
+ referrer?: string;
1041
+ integrity?: string;
1042
+ timeout?: number;
949
1043
  body?: any | null;
950
1044
  }): Observable<T>;
951
1045
  /**
@@ -971,9 +1065,12 @@ declare class HttpClient {
971
1065
  cache?: RequestCache;
972
1066
  mode?: RequestMode;
973
1067
  redirect?: RequestRedirect;
1068
+ referrer?: string;
1069
+ integrity?: string;
974
1070
  transferCache?: {
975
1071
  includeHeaders?: string[];
976
1072
  } | boolean;
1073
+ timeout?: number;
977
1074
  }): Observable<ArrayBuffer>;
978
1075
  /**
979
1076
  * Constructs a `GET` request that interprets the body as a `Blob`
@@ -998,9 +1095,12 @@ declare class HttpClient {
998
1095
  cache?: RequestCache;
999
1096
  mode?: RequestMode;
1000
1097
  redirect?: RequestRedirect;
1098
+ referrer?: string;
1099
+ integrity?: string;
1001
1100
  transferCache?: {
1002
1101
  includeHeaders?: string[];
1003
1102
  } | boolean;
1103
+ timeout?: number;
1004
1104
  }): Observable<Blob>;
1005
1105
  /**
1006
1106
  * Constructs a `GET` request that interprets the body as a text string
@@ -1025,9 +1125,12 @@ declare class HttpClient {
1025
1125
  cache?: RequestCache;
1026
1126
  mode?: RequestMode;
1027
1127
  redirect?: RequestRedirect;
1128
+ referrer?: string;
1129
+ integrity?: string;
1028
1130
  transferCache?: {
1029
1131
  includeHeaders?: string[];
1030
1132
  } | boolean;
1133
+ timeout?: number;
1031
1134
  }): Observable<string>;
1032
1135
  /**
1033
1136
  * Constructs a `GET` request that interprets the body as an `ArrayBuffer` and returns
@@ -1053,9 +1156,12 @@ declare class HttpClient {
1053
1156
  cache?: RequestCache;
1054
1157
  mode?: RequestMode;
1055
1158
  redirect?: RequestRedirect;
1159
+ referrer?: string;
1160
+ integrity?: string;
1056
1161
  transferCache?: {
1057
1162
  includeHeaders?: string[];
1058
1163
  } | boolean;
1164
+ timeout?: number;
1059
1165
  }): Observable<HttpEvent<ArrayBuffer>>;
1060
1166
  /**
1061
1167
  * Constructs a `GET` request that interprets the body as a `Blob` and
@@ -1080,9 +1186,12 @@ declare class HttpClient {
1080
1186
  cache?: RequestCache;
1081
1187
  mode?: RequestMode;
1082
1188
  redirect?: RequestRedirect;
1189
+ referrer?: string;
1190
+ integrity?: string;
1083
1191
  transferCache?: {
1084
1192
  includeHeaders?: string[];
1085
1193
  } | boolean;
1194
+ timeout?: number;
1086
1195
  }): Observable<HttpEvent<Blob>>;
1087
1196
  /**
1088
1197
  * Constructs a `GET` request that interprets the body as a text string and returns
@@ -1107,9 +1216,12 @@ declare class HttpClient {
1107
1216
  cache?: RequestCache;
1108
1217
  mode?: RequestMode;
1109
1218
  redirect?: RequestRedirect;
1219
+ referrer?: string;
1220
+ integrity?: string;
1110
1221
  transferCache?: {
1111
1222
  includeHeaders?: string[];
1112
1223
  } | boolean;
1224
+ timeout?: number;
1113
1225
  }): Observable<HttpEvent<string>>;
1114
1226
  /**
1115
1227
  * Constructs a `GET` request that interprets the body as JSON
@@ -1134,9 +1246,12 @@ declare class HttpClient {
1134
1246
  cache?: RequestCache;
1135
1247
  mode?: RequestMode;
1136
1248
  redirect?: RequestRedirect;
1249
+ referrer?: string;
1250
+ integrity?: string;
1137
1251
  transferCache?: {
1138
1252
  includeHeaders?: string[];
1139
1253
  } | boolean;
1254
+ timeout?: number;
1140
1255
  }): Observable<HttpEvent<Object>>;
1141
1256
  /**
1142
1257
  * Constructs a `GET` request that interprets the body as JSON and returns the full
@@ -1161,9 +1276,12 @@ declare class HttpClient {
1161
1276
  cache?: RequestCache;
1162
1277
  mode?: RequestMode;
1163
1278
  redirect?: RequestRedirect;
1279
+ referrer?: string;
1280
+ integrity?: string;
1164
1281
  transferCache?: {
1165
1282
  includeHeaders?: string[];
1166
1283
  } | boolean;
1284
+ timeout?: number;
1167
1285
  }): Observable<HttpEvent<T>>;
1168
1286
  /**
1169
1287
  * Constructs a `GET` request that interprets the body as an `ArrayBuffer` and
@@ -1189,9 +1307,12 @@ declare class HttpClient {
1189
1307
  cache?: RequestCache;
1190
1308
  mode?: RequestMode;
1191
1309
  redirect?: RequestRedirect;
1310
+ referrer?: string;
1311
+ integrity?: string;
1192
1312
  transferCache?: {
1193
1313
  includeHeaders?: string[];
1194
1314
  } | boolean;
1315
+ timeout?: number;
1195
1316
  }): Observable<HttpResponse<ArrayBuffer>>;
1196
1317
  /**
1197
1318
  * Constructs a `GET` request that interprets the body as a `Blob` and
@@ -1217,9 +1338,12 @@ declare class HttpClient {
1217
1338
  cache?: RequestCache;
1218
1339
  mode?: RequestMode;
1219
1340
  redirect?: RequestRedirect;
1341
+ referrer?: string;
1342
+ integrity?: string;
1220
1343
  transferCache?: {
1221
1344
  includeHeaders?: string[];
1222
1345
  } | boolean;
1346
+ timeout?: number;
1223
1347
  }): Observable<HttpResponse<Blob>>;
1224
1348
  /**
1225
1349
  * Constructs a `GET` request that interprets the body as a text stream and
@@ -1245,9 +1369,12 @@ declare class HttpClient {
1245
1369
  cache?: RequestCache;
1246
1370
  mode?: RequestMode;
1247
1371
  redirect?: RequestRedirect;
1372
+ referrer?: string;
1373
+ integrity?: string;
1248
1374
  transferCache?: {
1249
1375
  includeHeaders?: string[];
1250
1376
  } | boolean;
1377
+ timeout?: number;
1251
1378
  }): Observable<HttpResponse<string>>;
1252
1379
  /**
1253
1380
  * Constructs a `GET` request that interprets the body as JSON and
@@ -1273,9 +1400,12 @@ declare class HttpClient {
1273
1400
  cache?: RequestCache;
1274
1401
  mode?: RequestMode;
1275
1402
  redirect?: RequestRedirect;
1403
+ referrer?: string;
1404
+ integrity?: string;
1276
1405
  transferCache?: {
1277
1406
  includeHeaders?: string[];
1278
1407
  } | boolean;
1408
+ timeout?: number;
1279
1409
  }): Observable<HttpResponse<Object>>;
1280
1410
  /**
1281
1411
  * Constructs a `GET` request that interprets the body as JSON and
@@ -1301,9 +1431,12 @@ declare class HttpClient {
1301
1431
  cache?: RequestCache;
1302
1432
  mode?: RequestMode;
1303
1433
  redirect?: RequestRedirect;
1434
+ referrer?: string;
1435
+ integrity?: string;
1304
1436
  transferCache?: {
1305
1437
  includeHeaders?: string[];
1306
1438
  } | boolean;
1439
+ timeout?: number;
1307
1440
  }): Observable<HttpResponse<T>>;
1308
1441
  /**
1309
1442
  * Constructs a `GET` request that interprets the body as JSON and
@@ -1329,9 +1462,12 @@ declare class HttpClient {
1329
1462
  cache?: RequestCache;
1330
1463
  mode?: RequestMode;
1331
1464
  redirect?: RequestRedirect;
1465
+ referrer?: string;
1466
+ integrity?: string;
1332
1467
  transferCache?: {
1333
1468
  includeHeaders?: string[];
1334
1469
  } | boolean;
1470
+ timeout?: number;
1335
1471
  }): Observable<Object>;
1336
1472
  /**
1337
1473
  * Constructs a `GET` request that interprets the body as JSON and returns
@@ -1356,9 +1492,12 @@ declare class HttpClient {
1356
1492
  cache?: RequestCache;
1357
1493
  mode?: RequestMode;
1358
1494
  redirect?: RequestRedirect;
1495
+ referrer?: string;
1496
+ integrity?: string;
1359
1497
  transferCache?: {
1360
1498
  includeHeaders?: string[];
1361
1499
  } | boolean;
1500
+ timeout?: number;
1362
1501
  }): Observable<T>;
1363
1502
  /**
1364
1503
  * Constructs a `HEAD` request that interprets the body as an `ArrayBuffer` and
@@ -1383,9 +1522,12 @@ declare class HttpClient {
1383
1522
  cache?: RequestCache;
1384
1523
  mode?: RequestMode;
1385
1524
  redirect?: RequestRedirect;
1525
+ referrer?: string;
1526
+ integrity?: string;
1386
1527
  transferCache?: {
1387
1528
  includeHeaders?: string[];
1388
1529
  } | boolean;
1530
+ timeout?: number;
1389
1531
  }): Observable<ArrayBuffer>;
1390
1532
  /**
1391
1533
  * Constructs a `HEAD` request that interprets the body as a `Blob` and returns
@@ -1410,9 +1552,12 @@ declare class HttpClient {
1410
1552
  cache?: RequestCache;
1411
1553
  mode?: RequestMode;
1412
1554
  redirect?: RequestRedirect;
1555
+ referrer?: string;
1556
+ integrity?: string;
1413
1557
  transferCache?: {
1414
1558
  includeHeaders?: string[];
1415
1559
  } | boolean;
1560
+ timeout?: number;
1416
1561
  }): Observable<Blob>;
1417
1562
  /**
1418
1563
  * Constructs a `HEAD` request that interprets the body as a text string and returns the response
@@ -1437,9 +1582,12 @@ declare class HttpClient {
1437
1582
  cache?: RequestCache;
1438
1583
  mode?: RequestMode;
1439
1584
  redirect?: RequestRedirect;
1585
+ referrer?: string;
1586
+ integrity?: string;
1440
1587
  transferCache?: {
1441
1588
  includeHeaders?: string[];
1442
1589
  } | boolean;
1590
+ timeout?: number;
1443
1591
  }): Observable<string>;
1444
1592
  /**
1445
1593
  * Constructs a `HEAD` request that interprets the body as an `ArrayBuffer`
@@ -1465,9 +1613,12 @@ declare class HttpClient {
1465
1613
  cache?: RequestCache;
1466
1614
  mode?: RequestMode;
1467
1615
  redirect?: RequestRedirect;
1616
+ referrer?: string;
1617
+ integrity?: string;
1468
1618
  transferCache?: {
1469
1619
  includeHeaders?: string[];
1470
1620
  } | boolean;
1621
+ timeout?: number;
1471
1622
  }): Observable<HttpEvent<ArrayBuffer>>;
1472
1623
  /**
1473
1624
  * Constructs a `HEAD` request that interprets the body as a `Blob` and
@@ -1493,9 +1644,12 @@ declare class HttpClient {
1493
1644
  cache?: RequestCache;
1494
1645
  mode?: RequestMode;
1495
1646
  redirect?: RequestRedirect;
1647
+ referrer?: string;
1648
+ integrity?: string;
1496
1649
  transferCache?: {
1497
1650
  includeHeaders?: string[];
1498
1651
  } | boolean;
1652
+ timeout?: number;
1499
1653
  }): Observable<HttpEvent<Blob>>;
1500
1654
  /**
1501
1655
  * Constructs a `HEAD` request that interprets the body as a text string
@@ -1521,9 +1675,12 @@ declare class HttpClient {
1521
1675
  cache?: RequestCache;
1522
1676
  mode?: RequestMode;
1523
1677
  redirect?: RequestRedirect;
1678
+ referrer?: string;
1679
+ integrity?: string;
1524
1680
  transferCache?: {
1525
1681
  includeHeaders?: string[];
1526
1682
  } | boolean;
1683
+ timeout?: number;
1527
1684
  }): Observable<HttpEvent<string>>;
1528
1685
  /**
1529
1686
  * Constructs a `HEAD` request that interprets the body as JSON
@@ -1549,9 +1706,12 @@ declare class HttpClient {
1549
1706
  cache?: RequestCache;
1550
1707
  mode?: RequestMode;
1551
1708
  redirect?: RequestRedirect;
1709
+ referrer?: string;
1710
+ integrity?: string;
1552
1711
  transferCache?: {
1553
1712
  includeHeaders?: string[];
1554
1713
  } | boolean;
1714
+ timeout?: number;
1555
1715
  }): Observable<HttpEvent<Object>>;
1556
1716
  /**
1557
1717
  * Constructs a `HEAD` request that interprets the body as JSON and
@@ -1577,9 +1737,12 @@ declare class HttpClient {
1577
1737
  cache?: RequestCache;
1578
1738
  mode?: RequestMode;
1579
1739
  redirect?: RequestRedirect;
1740
+ referrer?: string;
1741
+ integrity?: string;
1580
1742
  transferCache?: {
1581
1743
  includeHeaders?: string[];
1582
1744
  } | boolean;
1745
+ timeout?: number;
1583
1746
  }): Observable<HttpEvent<T>>;
1584
1747
  /**
1585
1748
  * Constructs a `HEAD` request that interprets the body as an `ArrayBuffer`
@@ -1605,9 +1768,12 @@ declare class HttpClient {
1605
1768
  cache?: RequestCache;
1606
1769
  mode?: RequestMode;
1607
1770
  redirect?: RequestRedirect;
1771
+ referrer?: string;
1772
+ integrity?: string;
1608
1773
  transferCache?: {
1609
1774
  includeHeaders?: string[];
1610
1775
  } | boolean;
1776
+ timeout?: number;
1611
1777
  }): Observable<HttpResponse<ArrayBuffer>>;
1612
1778
  /**
1613
1779
  * Constructs a `HEAD` request that interprets the body as a `Blob` and returns
@@ -1633,9 +1799,12 @@ declare class HttpClient {
1633
1799
  cache?: RequestCache;
1634
1800
  mode?: RequestMode;
1635
1801
  redirect?: RequestRedirect;
1802
+ referrer?: string;
1803
+ integrity?: string;
1636
1804
  transferCache?: {
1637
1805
  includeHeaders?: string[];
1638
1806
  } | boolean;
1807
+ timeout?: number;
1639
1808
  }): Observable<HttpResponse<Blob>>;
1640
1809
  /**
1641
1810
  * Constructs a `HEAD` request that interprets the body as text stream
@@ -1661,9 +1830,12 @@ declare class HttpClient {
1661
1830
  cache?: RequestCache;
1662
1831
  mode?: RequestMode;
1663
1832
  redirect?: RequestRedirect;
1833
+ referrer?: string;
1834
+ integrity?: string;
1664
1835
  transferCache?: {
1665
1836
  includeHeaders?: string[];
1666
1837
  } | boolean;
1838
+ timeout?: number;
1667
1839
  }): Observable<HttpResponse<string>>;
1668
1840
  /**
1669
1841
  * Constructs a `HEAD` request that interprets the body as JSON and
@@ -1689,9 +1861,12 @@ declare class HttpClient {
1689
1861
  cache?: RequestCache;
1690
1862
  mode?: RequestMode;
1691
1863
  redirect?: RequestRedirect;
1864
+ referrer?: string;
1865
+ integrity?: string;
1692
1866
  transferCache?: {
1693
1867
  includeHeaders?: string[];
1694
1868
  } | boolean;
1869
+ timeout?: number;
1695
1870
  }): Observable<HttpResponse<Object>>;
1696
1871
  /**
1697
1872
  * Constructs a `HEAD` request that interprets the body as JSON
@@ -1717,9 +1892,12 @@ declare class HttpClient {
1717
1892
  cache?: RequestCache;
1718
1893
  mode?: RequestMode;
1719
1894
  redirect?: RequestRedirect;
1895
+ referrer?: string;
1896
+ integrity?: string;
1720
1897
  transferCache?: {
1721
1898
  includeHeaders?: string[];
1722
1899
  } | boolean;
1900
+ timeout?: number;
1723
1901
  }): Observable<HttpResponse<T>>;
1724
1902
  /**
1725
1903
 
@@ -1745,9 +1923,12 @@ declare class HttpClient {
1745
1923
  cache?: RequestCache;
1746
1924
  mode?: RequestMode;
1747
1925
  redirect?: RequestRedirect;
1926
+ referrer?: string;
1927
+ integrity?: string;
1748
1928
  transferCache?: {
1749
1929
  includeHeaders?: string[];
1750
1930
  } | boolean;
1931
+ timeout?: number;
1751
1932
  }): Observable<Object>;
1752
1933
  /**
1753
1934
  * Constructs a `HEAD` request that interprets the body as JSON and returns
@@ -1773,9 +1954,12 @@ declare class HttpClient {
1773
1954
  cache?: RequestCache;
1774
1955
  mode?: RequestMode;
1775
1956
  redirect?: RequestRedirect;
1957
+ referrer?: string;
1958
+ integrity?: string;
1776
1959
  transferCache?: {
1777
1960
  includeHeaders?: string[];
1778
1961
  } | boolean;
1962
+ timeout?: number;
1779
1963
  }): Observable<T>;
1780
1964
  /**
1781
1965
  * Constructs a `JSONP` request for the given URL and name of the callback parameter.
@@ -1822,6 +2006,9 @@ declare class HttpClient {
1822
2006
  cache?: RequestCache;
1823
2007
  mode?: RequestMode;
1824
2008
  redirect?: RequestRedirect;
2009
+ referrer?: string;
2010
+ integrity?: string;
2011
+ timeout?: number;
1825
2012
  }): Observable<ArrayBuffer>;
1826
2013
  /**
1827
2014
  * Constructs an `OPTIONS` request that interprets the body as a `Blob` and returns
@@ -1846,6 +2033,9 @@ declare class HttpClient {
1846
2033
  cache?: RequestCache;
1847
2034
  mode?: RequestMode;
1848
2035
  redirect?: RequestRedirect;
2036
+ referrer?: string;
2037
+ integrity?: string;
2038
+ timeout?: number;
1849
2039
  }): Observable<Blob>;
1850
2040
  /**
1851
2041
  * Constructs an `OPTIONS` request that interprets the body as a text string and
@@ -1870,6 +2060,9 @@ declare class HttpClient {
1870
2060
  cache?: RequestCache;
1871
2061
  mode?: RequestMode;
1872
2062
  redirect?: RequestRedirect;
2063
+ referrer?: string;
2064
+ integrity?: string;
2065
+ timeout?: number;
1873
2066
  }): Observable<string>;
1874
2067
  /**
1875
2068
  * Constructs an `OPTIONS` request that interprets the body as an `ArrayBuffer`
@@ -1895,6 +2088,9 @@ declare class HttpClient {
1895
2088
  cache?: RequestCache;
1896
2089
  mode?: RequestMode;
1897
2090
  redirect?: RequestRedirect;
2091
+ referrer?: string;
2092
+ integrity?: string;
2093
+ timeout?: number;
1898
2094
  }): Observable<HttpEvent<ArrayBuffer>>;
1899
2095
  /**
1900
2096
  * Constructs an `OPTIONS` request that interprets the body as a `Blob` and
@@ -1920,6 +2116,9 @@ declare class HttpClient {
1920
2116
  cache?: RequestCache;
1921
2117
  mode?: RequestMode;
1922
2118
  redirect?: RequestRedirect;
2119
+ referrer?: string;
2120
+ integrity?: string;
2121
+ timeout?: number;
1923
2122
  }): Observable<HttpEvent<Blob>>;
1924
2123
  /**
1925
2124
  * Constructs an `OPTIONS` request that interprets the body as a text string
@@ -1945,6 +2144,9 @@ declare class HttpClient {
1945
2144
  cache?: RequestCache;
1946
2145
  mode?: RequestMode;
1947
2146
  redirect?: RequestRedirect;
2147
+ referrer?: string;
2148
+ integrity?: string;
2149
+ timeout?: number;
1948
2150
  }): Observable<HttpEvent<string>>;
1949
2151
  /**
1950
2152
  * Constructs an `OPTIONS` request that interprets the body as JSON
@@ -1970,6 +2172,9 @@ declare class HttpClient {
1970
2172
  cache?: RequestCache;
1971
2173
  mode?: RequestMode;
1972
2174
  redirect?: RequestRedirect;
2175
+ referrer?: string;
2176
+ integrity?: string;
2177
+ timeout?: number;
1973
2178
  }): Observable<HttpEvent<Object>>;
1974
2179
  /**
1975
2180
  * Constructs an `OPTIONS` request that interprets the body as JSON and
@@ -1995,6 +2200,9 @@ declare class HttpClient {
1995
2200
  cache?: RequestCache;
1996
2201
  mode?: RequestMode;
1997
2202
  redirect?: RequestRedirect;
2203
+ referrer?: string;
2204
+ integrity?: string;
2205
+ timeout?: number;
1998
2206
  }): Observable<HttpEvent<T>>;
1999
2207
  /**
2000
2208
  * Constructs an `OPTIONS` request that interprets the body as an `ArrayBuffer`
@@ -2020,6 +2228,9 @@ declare class HttpClient {
2020
2228
  cache?: RequestCache;
2021
2229
  mode?: RequestMode;
2022
2230
  redirect?: RequestRedirect;
2231
+ referrer?: string;
2232
+ integrity?: string;
2233
+ timeout?: number;
2023
2234
  }): Observable<HttpResponse<ArrayBuffer>>;
2024
2235
  /**
2025
2236
  * Constructs an `OPTIONS` request that interprets the body as a `Blob`
@@ -2045,6 +2256,9 @@ declare class HttpClient {
2045
2256
  cache?: RequestCache;
2046
2257
  mode?: RequestMode;
2047
2258
  redirect?: RequestRedirect;
2259
+ referrer?: string;
2260
+ integrity?: string;
2261
+ timeout?: number;
2048
2262
  }): Observable<HttpResponse<Blob>>;
2049
2263
  /**
2050
2264
  * Constructs an `OPTIONS` request that interprets the body as text stream
@@ -2070,6 +2284,9 @@ declare class HttpClient {
2070
2284
  cache?: RequestCache;
2071
2285
  mode?: RequestMode;
2072
2286
  redirect?: RequestRedirect;
2287
+ referrer?: string;
2288
+ integrity?: string;
2289
+ timeout?: number;
2073
2290
  }): Observable<HttpResponse<string>>;
2074
2291
  /**
2075
2292
  * Constructs an `OPTIONS` request that interprets the body as JSON
@@ -2095,6 +2312,9 @@ declare class HttpClient {
2095
2312
  cache?: RequestCache;
2096
2313
  mode?: RequestMode;
2097
2314
  redirect?: RequestRedirect;
2315
+ referrer?: string;
2316
+ integrity?: string;
2317
+ timeout?: number;
2098
2318
  }): Observable<HttpResponse<Object>>;
2099
2319
  /**
2100
2320
  * Constructs an `OPTIONS` request that interprets the body as JSON and
@@ -2120,6 +2340,9 @@ declare class HttpClient {
2120
2340
  cache?: RequestCache;
2121
2341
  mode?: RequestMode;
2122
2342
  redirect?: RequestRedirect;
2343
+ referrer?: string;
2344
+ integrity?: string;
2345
+ timeout?: number;
2123
2346
  }): Observable<HttpResponse<T>>;
2124
2347
  /**
2125
2348
 
@@ -2145,6 +2368,9 @@ declare class HttpClient {
2145
2368
  cache?: RequestCache;
2146
2369
  mode?: RequestMode;
2147
2370
  redirect?: RequestRedirect;
2371
+ referrer?: string;
2372
+ integrity?: string;
2373
+ timeout?: number;
2148
2374
  }): Observable<Object>;
2149
2375
  /**
2150
2376
  * Constructs an `OPTIONS` request that interprets the body as JSON and returns the
@@ -2169,6 +2395,9 @@ declare class HttpClient {
2169
2395
  cache?: RequestCache;
2170
2396
  mode?: RequestMode;
2171
2397
  redirect?: RequestRedirect;
2398
+ referrer?: string;
2399
+ integrity?: string;
2400
+ timeout?: number;
2172
2401
  }): Observable<T>;
2173
2402
  /**
2174
2403
  * Constructs a `PATCH` request that interprets the body as an `ArrayBuffer` and returns
@@ -2194,6 +2423,9 @@ declare class HttpClient {
2194
2423
  cache?: RequestCache;
2195
2424
  mode?: RequestMode;
2196
2425
  redirect?: RequestRedirect;
2426
+ referrer?: string;
2427
+ integrity?: string;
2428
+ timeout?: number;
2197
2429
  }): Observable<ArrayBuffer>;
2198
2430
  /**
2199
2431
  * Constructs a `PATCH` request that interprets the body as a `Blob` and returns the response
@@ -2219,6 +2451,9 @@ declare class HttpClient {
2219
2451
  cache?: RequestCache;
2220
2452
  mode?: RequestMode;
2221
2453
  redirect?: RequestRedirect;
2454
+ referrer?: string;
2455
+ integrity?: string;
2456
+ timeout?: number;
2222
2457
  }): Observable<Blob>;
2223
2458
  /**
2224
2459
  * Constructs a `PATCH` request that interprets the body as a text string and
@@ -2244,6 +2479,9 @@ declare class HttpClient {
2244
2479
  cache?: RequestCache;
2245
2480
  mode?: RequestMode;
2246
2481
  redirect?: RequestRedirect;
2482
+ referrer?: string;
2483
+ integrity?: string;
2484
+ timeout?: number;
2247
2485
  }): Observable<string>;
2248
2486
  /**
2249
2487
  * Constructs a `PATCH` request that interprets the body as an `ArrayBuffer` and
@@ -2270,6 +2508,9 @@ declare class HttpClient {
2270
2508
  cache?: RequestCache;
2271
2509
  mode?: RequestMode;
2272
2510
  redirect?: RequestRedirect;
2511
+ referrer?: string;
2512
+ integrity?: string;
2513
+ timeout?: number;
2273
2514
  }): Observable<HttpEvent<ArrayBuffer>>;
2274
2515
  /**
2275
2516
  * Constructs a `PATCH` request that interprets the body as a `Blob`
@@ -2296,6 +2537,9 @@ declare class HttpClient {
2296
2537
  cache?: RequestCache;
2297
2538
  mode?: RequestMode;
2298
2539
  redirect?: RequestRedirect;
2540
+ referrer?: string;
2541
+ integrity?: string;
2542
+ timeout?: number;
2299
2543
  }): Observable<HttpEvent<Blob>>;
2300
2544
  /**
2301
2545
  * Constructs a `PATCH` request that interprets the body as a text string and
@@ -2322,6 +2566,9 @@ declare class HttpClient {
2322
2566
  cache?: RequestCache;
2323
2567
  mode?: RequestMode;
2324
2568
  redirect?: RequestRedirect;
2569
+ referrer?: string;
2570
+ integrity?: string;
2571
+ timeout?: number;
2325
2572
  }): Observable<HttpEvent<string>>;
2326
2573
  /**
2327
2574
  * Constructs a `PATCH` request that interprets the body as JSON
@@ -2348,6 +2595,9 @@ declare class HttpClient {
2348
2595
  cache?: RequestCache;
2349
2596
  mode?: RequestMode;
2350
2597
  redirect?: RequestRedirect;
2598
+ referrer?: string;
2599
+ integrity?: string;
2600
+ timeout?: number;
2351
2601
  }): Observable<HttpEvent<Object>>;
2352
2602
  /**
2353
2603
  * Constructs a `PATCH` request that interprets the body as JSON
@@ -2374,6 +2624,9 @@ declare class HttpClient {
2374
2624
  cache?: RequestCache;
2375
2625
  mode?: RequestMode;
2376
2626
  redirect?: RequestRedirect;
2627
+ referrer?: string;
2628
+ integrity?: string;
2629
+ timeout?: number;
2377
2630
  }): Observable<HttpEvent<T>>;
2378
2631
  /**
2379
2632
  * Constructs a `PATCH` request that interprets the body as an `ArrayBuffer`
@@ -2400,6 +2653,9 @@ declare class HttpClient {
2400
2653
  cache?: RequestCache;
2401
2654
  mode?: RequestMode;
2402
2655
  redirect?: RequestRedirect;
2656
+ referrer?: string;
2657
+ integrity?: string;
2658
+ timeout?: number;
2403
2659
  }): Observable<HttpResponse<ArrayBuffer>>;
2404
2660
  /**
2405
2661
  * Constructs a `PATCH` request that interprets the body as a `Blob` and returns the full
@@ -2426,6 +2682,9 @@ declare class HttpClient {
2426
2682
  cache?: RequestCache;
2427
2683
  mode?: RequestMode;
2428
2684
  redirect?: RequestRedirect;
2685
+ referrer?: string;
2686
+ integrity?: string;
2687
+ timeout?: number;
2429
2688
  }): Observable<HttpResponse<Blob>>;
2430
2689
  /**
2431
2690
  * Constructs a `PATCH` request that interprets the body as a text stream and returns the
@@ -2452,6 +2711,9 @@ declare class HttpClient {
2452
2711
  cache?: RequestCache;
2453
2712
  mode?: RequestMode;
2454
2713
  redirect?: RequestRedirect;
2714
+ referrer?: string;
2715
+ integrity?: string;
2716
+ timeout?: number;
2455
2717
  }): Observable<HttpResponse<string>>;
2456
2718
  /**
2457
2719
  * Constructs a `PATCH` request that interprets the body as JSON
@@ -2478,6 +2740,9 @@ declare class HttpClient {
2478
2740
  cache?: RequestCache;
2479
2741
  mode?: RequestMode;
2480
2742
  redirect?: RequestRedirect;
2743
+ referrer?: string;
2744
+ integrity?: string;
2745
+ timeout?: number;
2481
2746
  }): Observable<HttpResponse<Object>>;
2482
2747
  /**
2483
2748
  * Constructs a `PATCH` request that interprets the body as JSON
@@ -2504,6 +2769,9 @@ declare class HttpClient {
2504
2769
  cache?: RequestCache;
2505
2770
  mode?: RequestMode;
2506
2771
  redirect?: RequestRedirect;
2772
+ referrer?: string;
2773
+ integrity?: string;
2774
+ timeout?: number;
2507
2775
  }): Observable<HttpResponse<T>>;
2508
2776
  /**
2509
2777
 
@@ -2530,6 +2798,9 @@ declare class HttpClient {
2530
2798
  cache?: RequestCache;
2531
2799
  mode?: RequestMode;
2532
2800
  redirect?: RequestRedirect;
2801
+ referrer?: string;
2802
+ integrity?: string;
2803
+ timeout?: number;
2533
2804
  }): Observable<Object>;
2534
2805
  /**
2535
2806
  * Constructs a `PATCH` request that interprets the body as JSON
@@ -2556,6 +2827,9 @@ declare class HttpClient {
2556
2827
  cache?: RequestCache;
2557
2828
  mode?: RequestMode;
2558
2829
  redirect?: RequestRedirect;
2830
+ referrer?: string;
2831
+ integrity?: string;
2832
+ timeout?: number;
2559
2833
  }): Observable<T>;
2560
2834
  /**
2561
2835
  * Constructs a `POST` request that interprets the body as an `ArrayBuffer` and returns
@@ -2581,9 +2855,12 @@ declare class HttpClient {
2581
2855
  cache?: RequestCache;
2582
2856
  mode?: RequestMode;
2583
2857
  redirect?: RequestRedirect;
2858
+ referrer?: string;
2859
+ integrity?: string;
2584
2860
  transferCache?: {
2585
2861
  includeHeaders?: string[];
2586
2862
  } | boolean;
2863
+ timeout?: number;
2587
2864
  }): Observable<ArrayBuffer>;
2588
2865
  /**
2589
2866
  * Constructs a `POST` request that interprets the body as a `Blob` and returns the
@@ -2609,9 +2886,12 @@ declare class HttpClient {
2609
2886
  cache?: RequestCache;
2610
2887
  mode?: RequestMode;
2611
2888
  redirect?: RequestRedirect;
2889
+ referrer?: string;
2890
+ integrity?: string;
2612
2891
  transferCache?: {
2613
2892
  includeHeaders?: string[];
2614
2893
  } | boolean;
2894
+ timeout?: number;
2615
2895
  }): Observable<Blob>;
2616
2896
  /**
2617
2897
  * Constructs a `POST` request that interprets the body as a text string and
@@ -2637,9 +2917,12 @@ declare class HttpClient {
2637
2917
  cache?: RequestCache;
2638
2918
  mode?: RequestMode;
2639
2919
  redirect?: RequestRedirect;
2920
+ referrer?: string;
2921
+ integrity?: string;
2640
2922
  transferCache?: {
2641
2923
  includeHeaders?: string[];
2642
2924
  } | boolean;
2925
+ timeout?: number;
2643
2926
  }): Observable<string>;
2644
2927
  /**
2645
2928
  * Constructs a `POST` request that interprets the body as an `ArrayBuffer` and
@@ -2666,9 +2949,12 @@ declare class HttpClient {
2666
2949
  cache?: RequestCache;
2667
2950
  mode?: RequestMode;
2668
2951
  redirect?: RequestRedirect;
2952
+ referrer?: string;
2953
+ integrity?: string;
2669
2954
  transferCache?: {
2670
2955
  includeHeaders?: string[];
2671
2956
  } | boolean;
2957
+ timeout?: number;
2672
2958
  }): Observable<HttpEvent<ArrayBuffer>>;
2673
2959
  /**
2674
2960
  * Constructs a `POST` request that interprets the body as a `Blob`
@@ -2694,9 +2980,12 @@ declare class HttpClient {
2694
2980
  cache?: RequestCache;
2695
2981
  mode?: RequestMode;
2696
2982
  redirect?: RequestRedirect;
2983
+ referrer?: string;
2984
+ integrity?: string;
2697
2985
  transferCache?: {
2698
2986
  includeHeaders?: string[];
2699
2987
  } | boolean;
2988
+ timeout?: number;
2700
2989
  }): Observable<HttpEvent<Blob>>;
2701
2990
  /**
2702
2991
  * Constructs a `POST` request that interprets the body as a text string and returns the full
@@ -2723,9 +3012,12 @@ declare class HttpClient {
2723
3012
  cache?: RequestCache;
2724
3013
  mode?: RequestMode;
2725
3014
  redirect?: RequestRedirect;
3015
+ referrer?: string;
3016
+ integrity?: string;
2726
3017
  transferCache?: {
2727
3018
  includeHeaders?: string[];
2728
3019
  } | boolean;
3020
+ timeout?: number;
2729
3021
  }): Observable<HttpEvent<string>>;
2730
3022
  /**
2731
3023
  * Constructs a POST request that interprets the body as JSON and returns the full
@@ -2752,9 +3044,12 @@ declare class HttpClient {
2752
3044
  cache?: RequestCache;
2753
3045
  mode?: RequestMode;
2754
3046
  redirect?: RequestRedirect;
3047
+ referrer?: string;
3048
+ integrity?: string;
2755
3049
  transferCache?: {
2756
3050
  includeHeaders?: string[];
2757
3051
  } | boolean;
3052
+ timeout?: number;
2758
3053
  }): Observable<HttpEvent<Object>>;
2759
3054
  /**
2760
3055
  * Constructs a POST request that interprets the body as JSON and returns the full
@@ -2781,9 +3076,12 @@ declare class HttpClient {
2781
3076
  cache?: RequestCache;
2782
3077
  mode?: RequestMode;
2783
3078
  redirect?: RequestRedirect;
3079
+ referrer?: string;
3080
+ integrity?: string;
2784
3081
  transferCache?: {
2785
3082
  includeHeaders?: string[];
2786
3083
  } | boolean;
3084
+ timeout?: number;
2787
3085
  }): Observable<HttpEvent<T>>;
2788
3086
  /**
2789
3087
  * Constructs a POST request that interprets the body as an `ArrayBuffer`
@@ -2810,9 +3108,12 @@ declare class HttpClient {
2810
3108
  cache?: RequestCache;
2811
3109
  mode?: RequestMode;
2812
3110
  redirect?: RequestRedirect;
3111
+ referrer?: string;
3112
+ integrity?: string;
2813
3113
  transferCache?: {
2814
3114
  includeHeaders?: string[];
2815
3115
  } | boolean;
3116
+ timeout?: number;
2816
3117
  }): Observable<HttpResponse<ArrayBuffer>>;
2817
3118
  /**
2818
3119
  * Constructs a `POST` request that interprets the body as a `Blob` and returns the full
@@ -2839,9 +3140,12 @@ declare class HttpClient {
2839
3140
  cache?: RequestCache;
2840
3141
  mode?: RequestMode;
2841
3142
  redirect?: RequestRedirect;
3143
+ referrer?: string;
3144
+ integrity?: string;
2842
3145
  transferCache?: {
2843
3146
  includeHeaders?: string[];
2844
3147
  } | boolean;
3148
+ timeout?: number;
2845
3149
  }): Observable<HttpResponse<Blob>>;
2846
3150
  /**
2847
3151
  * Constructs a `POST` request that interprets the body as a text stream and returns
@@ -2868,9 +3172,12 @@ declare class HttpClient {
2868
3172
  cache?: RequestCache;
2869
3173
  mode?: RequestMode;
2870
3174
  redirect?: RequestRedirect;
3175
+ referrer?: string;
3176
+ integrity?: string;
2871
3177
  transferCache?: {
2872
3178
  includeHeaders?: string[];
2873
3179
  } | boolean;
3180
+ timeout?: number;
2874
3181
  }): Observable<HttpResponse<string>>;
2875
3182
  /**
2876
3183
  * Constructs a `POST` request that interprets the body as JSON
@@ -2897,9 +3204,12 @@ declare class HttpClient {
2897
3204
  cache?: RequestCache;
2898
3205
  mode?: RequestMode;
2899
3206
  redirect?: RequestRedirect;
3207
+ referrer?: string;
3208
+ integrity?: string;
2900
3209
  transferCache?: {
2901
3210
  includeHeaders?: string[];
2902
3211
  } | boolean;
3212
+ timeout?: number;
2903
3213
  }): Observable<HttpResponse<Object>>;
2904
3214
  /**
2905
3215
  * Constructs a `POST` request that interprets the body as JSON and returns the
@@ -2927,9 +3237,12 @@ declare class HttpClient {
2927
3237
  cache?: RequestCache;
2928
3238
  mode?: RequestMode;
2929
3239
  redirect?: RequestRedirect;
3240
+ referrer?: string;
3241
+ integrity?: string;
2930
3242
  transferCache?: {
2931
3243
  includeHeaders?: string[];
2932
3244
  } | boolean;
3245
+ timeout?: number;
2933
3246
  }): Observable<HttpResponse<T>>;
2934
3247
  /**
2935
3248
  * Constructs a `POST` request that interprets the body as JSON
@@ -2955,9 +3268,12 @@ declare class HttpClient {
2955
3268
  cache?: RequestCache;
2956
3269
  mode?: RequestMode;
2957
3270
  redirect?: RequestRedirect;
3271
+ referrer?: string;
3272
+ integrity?: string;
2958
3273
  transferCache?: {
2959
3274
  includeHeaders?: string[];
2960
3275
  } | boolean;
3276
+ timeout?: number;
2961
3277
  }): Observable<Object>;
2962
3278
  /**
2963
3279
  * Constructs a `POST` request that interprets the body as JSON
@@ -2984,9 +3300,12 @@ declare class HttpClient {
2984
3300
  cache?: RequestCache;
2985
3301
  mode?: RequestMode;
2986
3302
  redirect?: RequestRedirect;
3303
+ referrer?: string;
3304
+ integrity?: string;
2987
3305
  transferCache?: {
2988
3306
  includeHeaders?: string[];
2989
3307
  } | boolean;
3308
+ timeout?: number;
2990
3309
  }): Observable<T>;
2991
3310
  /**
2992
3311
  * Constructs a `PUT` request that interprets the body as an `ArrayBuffer` and returns the
@@ -3012,6 +3331,9 @@ declare class HttpClient {
3012
3331
  cache?: RequestCache;
3013
3332
  mode?: RequestMode;
3014
3333
  redirect?: RequestRedirect;
3334
+ referrer?: string;
3335
+ integrity?: string;
3336
+ timeout?: number;
3015
3337
  }): Observable<ArrayBuffer>;
3016
3338
  /**
3017
3339
  * Constructs a `PUT` request that interprets the body as a `Blob` and returns
@@ -3037,6 +3359,9 @@ declare class HttpClient {
3037
3359
  cache?: RequestCache;
3038
3360
  mode?: RequestMode;
3039
3361
  redirect?: RequestRedirect;
3362
+ referrer?: string;
3363
+ integrity?: string;
3364
+ timeout?: number;
3040
3365
  }): Observable<Blob>;
3041
3366
  /**
3042
3367
  * Constructs a `PUT` request that interprets the body as a text string and
@@ -3062,6 +3387,9 @@ declare class HttpClient {
3062
3387
  cache?: RequestCache;
3063
3388
  mode?: RequestMode;
3064
3389
  redirect?: RequestRedirect;
3390
+ referrer?: string;
3391
+ integrity?: string;
3392
+ timeout?: number;
3065
3393
  }): Observable<string>;
3066
3394
  /**
3067
3395
  * Constructs a `PUT` request that interprets the body as an `ArrayBuffer` and
@@ -3088,6 +3416,9 @@ declare class HttpClient {
3088
3416
  cache?: RequestCache;
3089
3417
  mode?: RequestMode;
3090
3418
  redirect?: RequestRedirect;
3419
+ referrer?: string;
3420
+ integrity?: string;
3421
+ timeout?: number;
3091
3422
  }): Observable<HttpEvent<ArrayBuffer>>;
3092
3423
  /**
3093
3424
  * Constructs a `PUT` request that interprets the body as a `Blob` and returns the full event
@@ -3114,6 +3445,9 @@ declare class HttpClient {
3114
3445
  cache?: RequestCache;
3115
3446
  mode?: RequestMode;
3116
3447
  redirect?: RequestRedirect;
3448
+ referrer?: string;
3449
+ integrity?: string;
3450
+ timeout?: number;
3117
3451
  }): Observable<HttpEvent<Blob>>;
3118
3452
  /**
3119
3453
  * Constructs a `PUT` request that interprets the body as a text string and returns the full event
@@ -3140,6 +3474,9 @@ declare class HttpClient {
3140
3474
  cache?: RequestCache;
3141
3475
  mode?: RequestMode;
3142
3476
  redirect?: RequestRedirect;
3477
+ referrer?: string;
3478
+ integrity?: string;
3479
+ timeout?: number;
3143
3480
  }): Observable<HttpEvent<string>>;
3144
3481
  /**
3145
3482
  * Constructs a `PUT` request that interprets the body as JSON and returns the full
@@ -3166,6 +3503,9 @@ declare class HttpClient {
3166
3503
  cache?: RequestCache;
3167
3504
  mode?: RequestMode;
3168
3505
  redirect?: RequestRedirect;
3506
+ referrer?: string;
3507
+ integrity?: string;
3508
+ timeout?: number;
3169
3509
  }): Observable<HttpEvent<Object>>;
3170
3510
  /**
3171
3511
  * Constructs a `PUT` request that interprets the body as JSON and returns the
@@ -3192,6 +3532,9 @@ declare class HttpClient {
3192
3532
  cache?: RequestCache;
3193
3533
  mode?: RequestMode;
3194
3534
  redirect?: RequestRedirect;
3535
+ referrer?: string;
3536
+ integrity?: string;
3537
+ timeout?: number;
3195
3538
  }): Observable<HttpEvent<T>>;
3196
3539
  /**
3197
3540
  * Constructs a `PUT` request that interprets the body as an
@@ -3218,6 +3561,9 @@ declare class HttpClient {
3218
3561
  cache?: RequestCache;
3219
3562
  mode?: RequestMode;
3220
3563
  redirect?: RequestRedirect;
3564
+ referrer?: string;
3565
+ integrity?: string;
3566
+ timeout?: number;
3221
3567
  }): Observable<HttpResponse<ArrayBuffer>>;
3222
3568
  /**
3223
3569
  * Constructs a `PUT` request that interprets the body as a `Blob` and returns the
@@ -3244,6 +3590,9 @@ declare class HttpClient {
3244
3590
  cache?: RequestCache;
3245
3591
  mode?: RequestMode;
3246
3592
  redirect?: RequestRedirect;
3593
+ referrer?: string;
3594
+ integrity?: string;
3595
+ timeout?: number;
3247
3596
  }): Observable<HttpResponse<Blob>>;
3248
3597
  /**
3249
3598
  * Constructs a `PUT` request that interprets the body as a text stream and returns the
@@ -3270,6 +3619,9 @@ declare class HttpClient {
3270
3619
  cache?: RequestCache;
3271
3620
  mode?: RequestMode;
3272
3621
  redirect?: RequestRedirect;
3622
+ referrer?: string;
3623
+ integrity?: string;
3624
+ timeout?: number;
3273
3625
  }): Observable<HttpResponse<string>>;
3274
3626
  /**
3275
3627
  * Constructs a `PUT` request that interprets the body as JSON and returns the full
@@ -3296,6 +3648,9 @@ declare class HttpClient {
3296
3648
  cache?: RequestCache;
3297
3649
  mode?: RequestMode;
3298
3650
  redirect?: RequestRedirect;
3651
+ referrer?: string;
3652
+ integrity?: string;
3653
+ timeout?: number;
3299
3654
  }): Observable<HttpResponse<Object>>;
3300
3655
  /**
3301
3656
  * Constructs a `PUT` request that interprets the body as an instance of the requested type and
@@ -3322,6 +3677,9 @@ declare class HttpClient {
3322
3677
  cache?: RequestCache;
3323
3678
  mode?: RequestMode;
3324
3679
  redirect?: RequestRedirect;
3680
+ referrer?: string;
3681
+ integrity?: string;
3682
+ timeout?: number;
3325
3683
  }): Observable<HttpResponse<T>>;
3326
3684
  /**
3327
3685
  * Constructs a `PUT` request that interprets the body as JSON
@@ -3347,6 +3705,9 @@ declare class HttpClient {
3347
3705
  cache?: RequestCache;
3348
3706
  mode?: RequestMode;
3349
3707
  redirect?: RequestRedirect;
3708
+ referrer?: string;
3709
+ integrity?: string;
3710
+ timeout?: number;
3350
3711
  }): Observable<Object>;
3351
3712
  /**
3352
3713
  * Constructs a `PUT` request that interprets the body as an instance of the requested type
@@ -3372,6 +3733,9 @@ declare class HttpClient {
3372
3733
  cache?: RequestCache;
3373
3734
  mode?: RequestMode;
3374
3735
  redirect?: RequestRedirect;
3736
+ referrer?: string;
3737
+ integrity?: string;
3738
+ timeout?: number;
3375
3739
  }): Observable<T>;
3376
3740
  static ɵfac: i0.ɵɵFactoryDeclaration<HttpClient, never>;
3377
3741
  static ɵprov: i0.ɵɵInjectableDeclaration<HttpClient>;
@@ -3797,6 +4161,17 @@ interface HttpResourceRequest {
3797
4161
  * This can affect whether the request follows redirects automatically, or if it fails when a redirect occurs.
3798
4162
  */
3799
4163
  redirect?: RequestRedirect | (string & {});
4164
+ /**
4165
+ * The referrer of the request, which can be used to indicate the origin of the request.
4166
+ * This is useful for security and analytics purposes.
4167
+ * Value is a same-origin URL, "about:client", or the empty string, to set request's referrer.
4168
+ */
4169
+ referrer?: string;
4170
+ /**
4171
+ * The integrity metadata of the request, which can be used to ensure the request is made with the expected content.
4172
+ * A cryptographic hash of the resource to be fetched by request
4173
+ */
4174
+ integrity?: string;
3800
4175
  /**
3801
4176
  * Configures the server-side rendering transfer cache for this request.
3802
4177
  *