-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.ts
57 lines (57 loc) · 1.24 KB
/
index.ts
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
export { IndexedDbProvider } from "./src/IndexedDbProvider";
export {
breakAndNormalizeSearchPhrase,
getFullTextIndexWordsForItem,
} from "./src/FullTextSearchHelpers";
export {
InMemoryProvider,
StoreData,
ILiveConsumerConfigs,
} from "./src/InMemoryProvider";
export {
ItemType,
KeyComponentType,
KeyType,
KeyPathType,
QuerySortOrder,
IndexSchema,
StoreSchema,
DbSchema,
FullTextTermResolution,
DbIndex,
DbStore,
DbTransaction,
DbProvider,
IDBCloseConnectionEventDetails,
IDBCloseConnectionPayload,
DBClosure,
OnCloseHandler,
openListOfProviders,
IObjectStoreProviderLogger,
} from "./src/ObjectStoreProvider";
export {
isIE,
isSafari,
arrayify,
getSerializedKeyForKeypath,
getKeyForKeypath,
getValueForSingleKeypath,
isCompoundKeyPath,
formListOfKeys,
serializeKeyToString,
serializeNumberToOrderableString,
serializeValueToOrderableString,
formListOfSerializedKeys,
} from "./src/ObjectStoreProviderUtils";
export {
ErrorCatcher,
DBIndex,
DBStore,
SimpleTransactionIndexHelper,
SimpleTransactionStoreHelper,
} from "./src/StoreHelpers";
export {
TransactionLockHelper,
TransactionToken,
} from "./src/TransactionLockHelper";
export type { OrderedMapType } from "./src/ordered-map";