These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
18 lines
530 B
Text
18 lines
530 B
Text
// https://w3c.github.io/IndexedDB/#idbrequest
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBRequest : EventTarget {
|
|
readonly attribute any result;
|
|
readonly attribute DOMException? error;
|
|
readonly attribute (IDBObjectStore or IDBIndex or IDBCursor)? source;
|
|
readonly attribute IDBTransaction? transaction;
|
|
readonly attribute IDBRequestReadyState readyState;
|
|
|
|
// Event handlers:
|
|
attribute EventHandler onsuccess;
|
|
attribute EventHandler onerror;
|
|
};
|
|
|
|
enum IDBRequestReadyState {
|
|
"pending",
|
|
"done"
|
|
};
|