@@ -6501,7 +6501,7 @@ trait ProgressEvent extends Event {
6501
6501
*
6502
6502
* MDN
6503
6503
*/
6504
- def loaded : Int = js.native
6504
+ def loaded : Double = js.native
6505
6505
6506
6506
/**
6507
6507
* The ProgressEvent.lengthComputable read-only property is a Boolean flag
@@ -6520,7 +6520,7 @@ trait ProgressEvent extends Event {
6520
6520
*
6521
6521
* MDN
6522
6522
*/
6523
- def total : Int = js.native
6523
+ def total : Double = js.native
6524
6524
6525
6525
/**
6526
6526
* The ProgressEvent.initProgressEvent() method Initializes an animation event
@@ -6529,8 +6529,8 @@ trait ProgressEvent extends Event {
6529
6529
* MDN
6530
6530
*/
6531
6531
def initProgressEvent (typeArg : String , canBubbleArg : Boolean ,
6532
- cancelableArg : Boolean , lengthComputableArg : Boolean , loadedArg : Int ,
6533
- totalArg : Int ): Unit = js.native
6532
+ cancelableArg : Boolean , lengthComputableArg : Boolean , loadedArg : Double ,
6533
+ totalArg : Double ): Unit = js.native
6534
6534
}
6535
6535
6536
6536
/**
@@ -7088,15 +7088,15 @@ class Blob(blobParts: js.Array[js.Any] = js.native,
7088
7088
*
7089
7089
* MDN
7090
7090
*/
7091
- def size : Int = js.native
7091
+ def size : Double = js.native
7092
7092
7093
7093
/**
7094
7094
* The slice is used to create a new Blob object containing the data in the specified
7095
7095
* range of bytes of the source Blob.
7096
7096
*
7097
7097
* MDN
7098
7098
*/
7099
- def slice (start : Int = js.native, end : Int = js.native,
7099
+ def slice (start : Double = js.native, end : Double = js.native,
7100
7100
contentType : String = js.native): Blob = js.native
7101
7101
7102
7102
def close (): Unit = js.native
0 commit comments