| Index: client/html/generated/html/frog/IDBDatabase.dart
|
| diff --git a/client/html/generated/html/frog/IDBDatabase.dart b/client/html/generated/html/frog/IDBDatabase.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4d551925ed0a61b047e0cbf2668a5b25d79def1d
|
| --- /dev/null
|
| +++ b/client/html/generated/html/frog/IDBDatabase.dart
|
| @@ -0,0 +1,29 @@
|
| +
|
| +class _IDBDatabaseJs implements IDBDatabase native "*IDBDatabase" {
|
| +
|
| + final String name;
|
| +
|
| + EventListener onabort;
|
| +
|
| + EventListener onerror;
|
| +
|
| + EventListener onversionchange;
|
| +
|
| + final String version;
|
| +
|
| + void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
|
| +
|
| + void close() native;
|
| +
|
| + _IDBObjectStoreJs createObjectStore(String name) native;
|
| +
|
| + void deleteObjectStore(String name) native;
|
| +
|
| + bool dispatchEvent(_EventJs evt) native;
|
| +
|
| + void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
|
| +
|
| + _IDBVersionChangeRequestJs setVersion(String version) native;
|
| +
|
| + _IDBTransactionJs transaction(String storeName, int mode) native;
|
| +}
|
|
|