| Index: client/html/generated/html/interface/IDBObjectStore.dart
|
| diff --git a/client/html/generated/html/interface/IDBObjectStore.dart b/client/html/generated/html/interface/IDBObjectStore.dart
|
| deleted file mode 100644
|
| index df4fafa41dd1fd99338c9e26144201ead9ca3034..0000000000000000000000000000000000000000
|
| --- a/client/html/generated/html/interface/IDBObjectStore.dart
|
| +++ /dev/null
|
| @@ -1,36 +0,0 @@
|
| -// 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 IDBObjectStore {
|
| -
|
| - final List<String> indexNames;
|
| -
|
| - final String keyPath;
|
| -
|
| - final String name;
|
| -
|
| - final IDBTransaction transaction;
|
| -
|
| - IDBRequest add(Dynamic value, [IDBKey key]);
|
| -
|
| - IDBRequest clear();
|
| -
|
| - IDBRequest count([var key_OR_range]);
|
| -
|
| - IDBIndex createIndex(String name, String keyPath);
|
| -
|
| - IDBRequest delete(var key_OR_keyRange);
|
| -
|
| - void deleteIndex(String name);
|
| -
|
| - IDBRequest getObject(IDBKey key);
|
| -
|
| - IDBIndex index(String name);
|
| -
|
| - IDBRequest openCursor([IDBKeyRange range, int direction]);
|
| -
|
| - IDBRequest put(Dynamic value, [IDBKey key]);
|
| -}
|
|
|