Skip to content

Commit

Permalink
馃 Update core dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
orta committed May 12, 2023
1 parent 75a85f3 commit 3d6cf76
Show file tree
Hide file tree
Showing 6 changed files with 86 additions and 86 deletions.
4 changes: 2 additions & 2 deletions baselines/audioworklet.generated.d.ts
Expand Up @@ -1028,7 +1028,7 @@ interface URLSearchParams {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
*/
delete(name: string): void;
delete(name: string, value?: string): void;
/**
* Returns the first value associated to the given search parameter.
*
Expand All @@ -1046,7 +1046,7 @@ interface URLSearchParams {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
*/
has(name: string): boolean;
has(name: string, value?: string): boolean;
/**
* Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
*
Expand Down
4 changes: 2 additions & 2 deletions baselines/dom.generated.d.ts
Expand Up @@ -22490,7 +22490,7 @@ interface URLSearchParams {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
*/
delete(name: string): void;
delete(name: string, value?: string): void;
/**
* Returns the first value associated to the given search parameter.
*
Expand All @@ -22508,7 +22508,7 @@ interface URLSearchParams {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
*/
has(name: string): boolean;
has(name: string, value?: string): boolean;
/**
* Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
*
Expand Down
4 changes: 2 additions & 2 deletions baselines/serviceworker.generated.d.ts
Expand Up @@ -5254,7 +5254,7 @@ interface URLSearchParams {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
*/
delete(name: string): void;
delete(name: string, value?: string): void;
/**
* Returns the first value associated to the given search parameter.
*
Expand All @@ -5272,7 +5272,7 @@ interface URLSearchParams {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
*/
has(name: string): boolean;
has(name: string, value?: string): boolean;
/**
* Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
*
Expand Down
4 changes: 2 additions & 2 deletions baselines/sharedworker.generated.d.ts
Expand Up @@ -5069,7 +5069,7 @@ interface URLSearchParams {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
*/
delete(name: string): void;
delete(name: string, value?: string): void;
/**
* Returns the first value associated to the given search parameter.
*
Expand All @@ -5087,7 +5087,7 @@ interface URLSearchParams {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
*/
has(name: string): boolean;
has(name: string, value?: string): boolean;
/**
* Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
*
Expand Down
4 changes: 2 additions & 2 deletions baselines/webworker.generated.d.ts
Expand Up @@ -5564,7 +5564,7 @@ interface URLSearchParams {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)
*/
delete(name: string): void;
delete(name: string, value?: string): void;
/**
* Returns the first value associated to the given search parameter.
*
Expand All @@ -5582,7 +5582,7 @@ interface URLSearchParams {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)
*/
has(name: string): boolean;
has(name: string, value?: string): boolean;
/**
* Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
*
Expand Down

0 comments on commit 3d6cf76

Please sign in to comment.