Index: client/html/generated/html/interface/IDBTransaction.dart |
diff --git a/client/html/generated/html/interface/IDBTransaction.dart b/client/html/generated/html/interface/IDBTransaction.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..09676a18ff22344a7df5e23468846f2441d3b57f |
--- /dev/null |
+++ b/client/html/generated/html/interface/IDBTransaction.dart |
@@ -0,0 +1,34 @@ |
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
+// for details. All rights reserved. Use of this source code is governed by a |
+// BSD-style license that can be found in the LICENSE file. |
+ |
+// WARNING: Do not edit - generated code. |
+ |
+interface IDBTransaction { |
+ |
+ static final int READ_ONLY = 0; |
+ |
+ static final int READ_WRITE = 1; |
+ |
+ static final int VERSION_CHANGE = 2; |
+ |
+ final IDBDatabase db; |
+ |
+ final int mode; |
+ |
+ EventListener onabort; |
+ |
+ EventListener oncomplete; |
+ |
+ EventListener onerror; |
+ |
+ void abort(); |
+ |
+ void addEventListener(String type, EventListener listener, [bool useCapture]); |
+ |
+ bool dispatchEvent(Event evt); |
+ |
+ IDBObjectStore objectStore(String name); |
+ |
+ void removeEventListener(String type, EventListener listener, [bool useCapture]); |
+} |