File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -1865,6 +1865,14 @@ declare var Window: {
1865
1865
new(): Window;
1866
1866
}
1867
1867
1868
+ interface FormData {
1869
+ append(name: any, value: any, blobName?: string): void;
1870
+ }
1871
+ declare var FormData: {
1872
+ prototype: FormData;
1873
+ new (form?:HTMLFormElement): FormData;
1874
+ }
1875
+
1868
1876
interface NavigatorID {
1869
1877
appVersion: string;
1870
1878
appName: string;
@@ -10196,14 +10204,6 @@ declare var MSManipulationEvent: {
10196
10204
MS_MANIPULATION_STATE_CANCELLED: number;
10197
10205
}
10198
10206
10199
- interface FormData {
10200
- append(name: any, value: any, blobName?: string): void;
10201
- }
10202
- declare var FormData: {
10203
- prototype: FormData;
10204
- new(): FormData;
10205
- }
10206
-
10207
10207
interface HTMLDataListElement extends HTMLElement {
10208
10208
options: HTMLCollection;
10209
10209
}
You can’t perform that action at this time.
0 commit comments