File tree Expand file tree Collapse file tree 6 files changed +86
-86
lines changed Expand file tree Collapse file tree 6 files changed +86
-86
lines changed Original file line number Diff line number Diff line change @@ -1028,7 +1028,7 @@ interface URLSearchParams {
10281028 *
10291029 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
10301030 */
1031- delete ( name : string ) : void ;
1031+ delete ( name : string , value ?: string ) : void ;
10321032 /**
10331033 * Returns the first value associated to the given search parameter.
10341034 *
@@ -1046,7 +1046,7 @@ interface URLSearchParams {
10461046 *
10471047 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
10481048 */
1049- has ( name : string ) : boolean ;
1049+ has ( name : string , value ?: string ) : boolean ;
10501050 /**
10511051 * Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
10521052 *
Original file line number Diff line number Diff line change @@ -22490,7 +22490,7 @@ interface URLSearchParams {
2249022490 *
2249122491 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
2249222492 */
22493- delete(name: string): void;
22493+ delete(name: string, value?: string ): void;
2249422494 /**
2249522495 * Returns the first value associated to the given search parameter.
2249622496 *
@@ -22508,7 +22508,7 @@ interface URLSearchParams {
2250822508 *
2250922509 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
2251022510 */
22511- has(name: string): boolean;
22511+ has(name: string, value?: string ): boolean;
2251222512 /**
2251322513 * Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
2251422514 *
Original file line number Diff line number Diff line change @@ -5254,7 +5254,7 @@ interface URLSearchParams {
52545254 *
52555255 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
52565256 */
5257- delete ( name : string ) : void ;
5257+ delete ( name : string , value ?: string ) : void ;
52585258 /**
52595259 * Returns the first value associated to the given search parameter.
52605260 *
@@ -5272,7 +5272,7 @@ interface URLSearchParams {
52725272 *
52735273 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
52745274 */
5275- has ( name : string ) : boolean ;
5275+ has ( name : string , value ?: string ) : boolean ;
52765276 /**
52775277 * Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
52785278 *
Original file line number Diff line number Diff line change @@ -5069,7 +5069,7 @@ interface URLSearchParams {
50695069 *
50705070 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
50715071 */
5072- delete ( name : string ) : void ;
5072+ delete ( name : string , value ?: string ) : void ;
50735073 /**
50745074 * Returns the first value associated to the given search parameter.
50755075 *
@@ -5087,7 +5087,7 @@ interface URLSearchParams {
50875087 *
50885088 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
50895089 */
5090- has ( name : string ) : boolean ;
5090+ has ( name : string , value ?: string ) : boolean ;
50915091 /**
50925092 * Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
50935093 *
Original file line number Diff line number Diff line change @@ -5564,7 +5564,7 @@ interface URLSearchParams {
55645564 *
55655565 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
55665566 */
5567- delete ( name : string ) : void ;
5567+ delete ( name : string , value ?: string ) : void ;
55685568 /**
55695569 * Returns the first value associated to the given search parameter.
55705570 *
@@ -5582,7 +5582,7 @@ interface URLSearchParams {
55825582 *
55835583 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
55845584 */
5585- has ( name : string ) : boolean ;
5585+ has ( name : string , value ?: string ) : boolean ;
55865586 /**
55875587 * Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
55885588 *
You can’t perform that action at this time.
0 commit comments