| Index: client/dom/generated/src/frog/IDBIndex.dart
|
| diff --git a/client/dom/generated/src/frog/IDBIndex.dart b/client/dom/generated/src/frog/IDBIndex.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ba28a44dcdf8b2dcbaebda07e1bbc01301c9a0e8
|
| --- /dev/null
|
| +++ b/client/dom/generated/src/frog/IDBIndex.dart
|
| @@ -0,0 +1,23 @@
|
| +
|
| +class IDBIndex native "IDBIndex" {
|
| +
|
| + String keyPath;
|
| +
|
| + String name;
|
| +
|
| + IDBObjectStore objectStore;
|
| +
|
| + bool unique;
|
| +
|
| + IDBRequest getObject(IDBKey key) native;
|
| +
|
| + IDBRequest getKey(IDBKey key) native;
|
| +
|
| + IDBRequest openCursor([IDBKeyRange range = null, int direction = null]) native;
|
| +
|
| + IDBRequest openKeyCursor([IDBKeyRange range = null, int direction = null]) native;
|
| +
|
| + var dartObjectLocalStorage;
|
| +
|
| + String get typeName() native;
|
| +}
|
|
|