File tree 6 files changed +86
-86
lines changed
6 files changed +86
-86
lines changed Original file line number Diff line number Diff line change @@ -1028,7 +1028,7 @@ interface URLSearchParams {
1028
1028
*
1029
1029
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
1030
1030
*/
1031
- delete ( name : string ) : void ;
1031
+ delete ( name : string , value ?: string ) : void ;
1032
1032
/**
1033
1033
* Returns the first value associated to the given search parameter.
1034
1034
*
@@ -1046,7 +1046,7 @@ interface URLSearchParams {
1046
1046
*
1047
1047
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
1048
1048
*/
1049
- has ( name : string ) : boolean ;
1049
+ has ( name : string , value ?: string ) : boolean ;
1050
1050
/**
1051
1051
* Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
1052
1052
*
Original file line number Diff line number Diff line change @@ -22490,7 +22490,7 @@ interface URLSearchParams {
22490
22490
*
22491
22491
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
22492
22492
*/
22493
- delete(name: string): void;
22493
+ delete(name: string, value?: string ): void;
22494
22494
/**
22495
22495
* Returns the first value associated to the given search parameter.
22496
22496
*
@@ -22508,7 +22508,7 @@ interface URLSearchParams {
22508
22508
*
22509
22509
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
22510
22510
*/
22511
- has(name: string): boolean;
22511
+ has(name: string, value?: string ): boolean;
22512
22512
/**
22513
22513
* Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
22514
22514
*
Original file line number Diff line number Diff line change @@ -5254,7 +5254,7 @@ interface URLSearchParams {
5254
5254
*
5255
5255
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
5256
5256
*/
5257
- delete ( name : string ) : void ;
5257
+ delete ( name : string , value ?: string ) : void ;
5258
5258
/**
5259
5259
* Returns the first value associated to the given search parameter.
5260
5260
*
@@ -5272,7 +5272,7 @@ interface URLSearchParams {
5272
5272
*
5273
5273
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
5274
5274
*/
5275
- has ( name : string ) : boolean ;
5275
+ has ( name : string , value ?: string ) : boolean ;
5276
5276
/**
5277
5277
* Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
5278
5278
*
Original file line number Diff line number Diff line change @@ -5069,7 +5069,7 @@ interface URLSearchParams {
5069
5069
*
5070
5070
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
5071
5071
*/
5072
- delete ( name : string ) : void ;
5072
+ delete ( name : string , value ?: string ) : void ;
5073
5073
/**
5074
5074
* Returns the first value associated to the given search parameter.
5075
5075
*
@@ -5087,7 +5087,7 @@ interface URLSearchParams {
5087
5087
*
5088
5088
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
5089
5089
*/
5090
- has ( name : string ) : boolean ;
5090
+ has ( name : string , value ?: string ) : boolean ;
5091
5091
/**
5092
5092
* Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
5093
5093
*
Original file line number Diff line number Diff line change @@ -5564,7 +5564,7 @@ interface URLSearchParams {
5564
5564
*
5565
5565
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
5566
5566
*/
5567
- delete ( name : string ) : void ;
5567
+ delete ( name : string , value ?: string ) : void ;
5568
5568
/**
5569
5569
* Returns the first value associated to the given search parameter.
5570
5570
*
@@ -5582,7 +5582,7 @@ interface URLSearchParams {
5582
5582
*
5583
5583
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
5584
5584
*/
5585
- has ( name : string ) : boolean ;
5585
+ has ( name : string , value ?: string ) : boolean ;
5586
5586
/**
5587
5587
* Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
5588
5588
*
You can’t perform that action at this time.
0 commit comments