mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:27:35 +00:00
LibWeb: Use long long
where it was replaced with long
This commit is contained in:
parent
3413eb1416
commit
94bb5a779b
4 changed files with 48 additions and 48 deletions
|
@ -4,8 +4,8 @@ interface ProgressEvent : Event {
|
|||
constructor(DOMString type, optional ProgressEventInit eventInitDict = {});
|
||||
|
||||
readonly attribute boolean lengthComputable;
|
||||
readonly attribute unsigned long loaded;
|
||||
readonly attribute unsigned long total;
|
||||
readonly attribute unsigned long long loaded;
|
||||
readonly attribute unsigned long long total;
|
||||
};
|
||||
|
||||
dictionary ProgressEventInit : EventInit {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue