| Index: client/dom/generated/src/frog/IDBTransaction.dart
|
| diff --git a/client/dom/generated/src/frog/IDBTransaction.dart b/client/dom/generated/src/frog/IDBTransaction.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..587e79ce196a3ef41477eed8c67c32faa4d66585
|
| --- /dev/null
|
| +++ b/client/dom/generated/src/frog/IDBTransaction.dart
|
| @@ -0,0 +1,27 @@
|
| +
|
| +class IDBTransaction native "IDBTransaction" {
|
| +
|
| + IDBDatabase db;
|
| +
|
| + int mode;
|
| +
|
| + EventListener onabort;
|
| +
|
| + EventListener oncomplete;
|
| +
|
| + EventListener onerror;
|
| +
|
| + void abort() native;
|
| +
|
| + void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
|
| +
|
| + bool dispatchEvent(Event evt) native;
|
| +
|
| + IDBObjectStore objectStore(String name) native;
|
| +
|
| + void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
|
| +
|
| + var dartObjectLocalStorage;
|
| +
|
| + String get typeName() native;
|
| +}
|
|
|