forked from objectbox/objectbox-dart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobjectbox.dart
35 lines (34 loc) · 960 Bytes
/
objectbox.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/// ObjectBox for Dart is a standalone database storing Dart objects locally,
/// with strong ACID semantics.
///
/// See the [README](https://github.com/objectbox/objectbox-dart#readme)
/// to get started.
library objectbox;
export 'src/annotations.dart';
export 'src/box.dart' show Box, PutMode;
export 'src/common.dart';
export 'src/observable.dart';
export 'src/query.dart'
show
Query,
QueryBuilder,
Order,
Condition,
PropertyQuery,
IntegerPropertyQuery,
DoublePropertyQuery,
StringPropertyQuery;
export 'src/relations/to_many.dart' show ToMany;
export 'src/relations/to_one.dart' show ToOne;
export 'src/store.dart' show Store;
export 'src/sync.dart'
show
Sync,
SyncChange,
SyncClient,
SyncConnectionEvent,
SyncCredentials,
SyncRequestUpdatesMode,
SyncState,
SyncLoginEvent;
export 'src/transaction.dart' show TxMode;