| 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
|
| index 5bb813a8ed6ee0aeb259735e35de484dd2fe50cf..d557d47cdf1e3c03641108a7735b7594e6d04cec 100644
|
| --- a/client/dom/generated/src/frog/IDBIndex.dart
|
| +++ b/client/dom/generated/src/frog/IDBIndex.dart
|
| @@ -1,15 +1,15 @@
|
|
|
| class IDBIndex native "*IDBIndex" {
|
|
|
| - String keyPath;
|
| + String get keyPath() native "return this.keyPath;";
|
|
|
| - bool multiEntry;
|
| + bool get multiEntry() native "return this.multiEntry;";
|
|
|
| - String name;
|
| + String get name() native "return this.name;";
|
|
|
| - IDBObjectStore objectStore;
|
| + IDBObjectStore get objectStore() native "return this.objectStore;";
|
|
|
| - bool unique;
|
| + bool get unique() native "return this.unique;";
|
|
|
| IDBRequest count([IDBKeyRange range = null]) native;
|
|
|
|
|