mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
14 lines
423 B
Plaintext
14 lines
423 B
Plaintext
#import <DOM/Event.idl>
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBVersionChangeEvent : Event {
|
|
constructor(DOMString type, optional IDBVersionChangeEventInit eventInitDict = {});
|
|
readonly attribute unsigned long long oldVersion;
|
|
readonly attribute unsigned long long? newVersion;
|
|
};
|
|
|
|
dictionary IDBVersionChangeEventInit : EventInit {
|
|
unsigned long long oldVersion = 0;
|
|
unsigned long long? newVersion;
|
|
};
|