mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-29 02:50:26 +00:00
13 lines
423 B
Text
13 lines
423 B
Text
#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;
|
|
};
|