| Index: lib/html/doc/interface/DatabaseSync.dart
|
| diff --git a/lib/html/doc/interface/DatabaseSync.dart b/lib/html/doc/interface/DatabaseSync.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ece2476922b8d4517f427b37eaa9714c9397818e
|
| --- /dev/null
|
| +++ b/lib/html/doc/interface/DatabaseSync.dart
|
| @@ -0,0 +1,24 @@
|
| +// 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.
|
| +
|
| +/// @domName DatabaseSync
|
| +interface DatabaseSync {
|
| +
|
| + /** @domName DatabaseSync.lastErrorMessage */
|
| + final String lastErrorMessage;
|
| +
|
| + /** @domName DatabaseSync.version */
|
| + final String version;
|
| +
|
| + /** @domName DatabaseSync.changeVersion */
|
| + void changeVersion(String oldVersion, String newVersion, [SQLTransactionSyncCallback callback]);
|
| +
|
| + /** @domName DatabaseSync.readTransaction */
|
| + void readTransaction(SQLTransactionSyncCallback callback);
|
| +
|
| + /** @domName DatabaseSync.transaction */
|
| + void transaction(SQLTransactionSyncCallback callback);
|
| +}
|
|
|