Skip to content

Commit

Permalink
fix: add FormData to URLSearchParams constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
keithamus authored Jul 1, 2020
1 parent bf671e9 commit 4015f6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15972,7 +15972,7 @@ interface URLSearchParams {

declare var URLSearchParams: {
prototype: URLSearchParams;
new(init?: string[][] | Record<string, string> | string | URLSearchParams): URLSearchParams;
new(init?: string[][] | Record<string, string> | string | URLSearchParams | FormData): URLSearchParams;
toString(): string;
};

Expand Down

0 comments on commit 4015f6f

Please sign in to comment.