You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: baselines/dom.generated.d.ts
+14-13Lines changed: 14 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -5368,23 +5368,23 @@ declare var FileList: {
5368
5368
};
5369
5369
5370
5370
interface FileReaderEventMap {
5371
-
"abort": ProgressEvent;
5372
-
"error": ProgressEvent;
5373
-
"load": ProgressEvent;
5374
-
"loadend": ProgressEvent;
5375
-
"loadstart": ProgressEvent;
5376
-
"progress": ProgressEvent;
5371
+
"abort": ProgressEvent<FileReader>;
5372
+
"error": ProgressEvent<FileReader>;
5373
+
"load": ProgressEvent<FileReader>;
5374
+
"loadend": ProgressEvent<FileReader>;
5375
+
"loadstart": ProgressEvent<FileReader>;
5376
+
"progress": ProgressEvent<FileReader>;
5377
5377
}
5378
5378
5379
5379
/** Lets web applications asynchronously read the contents of files (or raw data buffers) stored on the user's computer, using File or Blob objects to specify the file or data to read. */
@@ -11759,9 +11759,10 @@ declare var ProcessingInstruction: {
11759
11759
};
11760
11760
11761
11761
/** Events measuring progress of an underlying process, like an HTTP request (for an XMLHttpRequest, or the loading of the underlying resource of an <img>, <audio>, <video>, <style> or <link>). */
Copy file name to clipboardExpand all lines: baselines/webworker.generated.d.ts
+14-13Lines changed: 14 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -1525,23 +1525,23 @@ declare var FileList: {
1525
1525
};
1526
1526
1527
1527
interfaceFileReaderEventMap{
1528
-
"abort": ProgressEvent;
1529
-
"error": ProgressEvent;
1530
-
"load": ProgressEvent;
1531
-
"loadend": ProgressEvent;
1532
-
"loadstart": ProgressEvent;
1533
-
"progress": ProgressEvent;
1528
+
"abort": ProgressEvent<FileReader>;
1529
+
"error": ProgressEvent<FileReader>;
1530
+
"load": ProgressEvent<FileReader>;
1531
+
"loadend": ProgressEvent<FileReader>;
1532
+
"loadstart": ProgressEvent<FileReader>;
1533
+
"progress": ProgressEvent<FileReader>;
1534
1534
}
1535
1535
1536
1536
/** Lets web applications asynchronously read the contents of files (or raw data buffers) stored on the user's computer, using File or Blob objects to specify the file or data to read. */
/** Events measuring progress of an underlying process, like an HTTP request (for an XMLHttpRequest, or the loading of the underlying resource of an <img>, <audio>, <video>, <style> or <link>). */
0 commit comments