| Index: client/html/generated/html/frog/IDBObjectStore.dart | 
| diff --git a/client/html/generated/html/frog/IDBObjectStore.dart b/client/html/generated/html/frog/IDBObjectStore.dart | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..e29c335941e93633a27313358c1d11436da1ee64 | 
| --- /dev/null | 
| +++ b/client/html/generated/html/frog/IDBObjectStore.dart | 
| @@ -0,0 +1,31 @@ | 
| + | 
| +class _IDBObjectStoreImpl implements IDBObjectStore native "*IDBObjectStore" { | 
| + | 
| +  final List<String> indexNames; | 
| + | 
| +  final String keyPath; | 
| + | 
| +  final String name; | 
| + | 
| +  final _IDBTransactionImpl transaction; | 
| + | 
| +  _IDBRequestImpl add(Dynamic value, [_IDBKeyImpl key = null]) native; | 
| + | 
| +  _IDBRequestImpl clear() native; | 
| + | 
| +  _IDBRequestImpl count([_IDBKeyRangeImpl range = null]) native; | 
| + | 
| +  _IDBIndexImpl createIndex(String name, String keyPath) native; | 
| + | 
| +  _IDBRequestImpl delete(_IDBKeyImpl key) native; | 
| + | 
| +  void deleteIndex(String name) native; | 
| + | 
| +  _IDBRequestImpl getObject(_IDBKeyImpl key) native; | 
| + | 
| +  _IDBIndexImpl index(String name) native; | 
| + | 
| +  _IDBRequestImpl openCursor([_IDBKeyRangeImpl range = null, int direction = null]) native; | 
| + | 
| +  _IDBRequestImpl put(Dynamic value, [_IDBKeyImpl key = null]) native; | 
| +} | 
|  |