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
/** 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. */
Copy file name to clipboardexpand all lines: baselines/webworker.generated.d.ts
+16-12
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": FileReaderProgressEvent;
1529
+
"error": FileReaderProgressEvent;
1530
+
"load": FileReaderProgressEvent;
1531
+
"loadend": FileReaderProgressEvent;
1532
+
"loadstart": FileReaderProgressEvent;
1533
+
"progress": FileReaderProgressEvent;
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. */
0 commit comments