-
Notifications
You must be signed in to change notification settings - Fork 47
/
index.d.ts
56 lines (55 loc) · 1.54 KB
/
index.d.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
export { attention } from './attention/index.js'
export {
badge,
badgeEn,
BadgeMessages,
badgeRu,
BadgeStyles
} from './badge/index.js'
export { Client, ClientMeta, ClientOptions } from './client/index.js'
export { confirm } from './confirm/index.js'
export { AuthStore, createAuth } from './create-auth/index.js'
export { createClientStore } from './create-client-store/index.js'
export {
createFilter,
Filter,
FilterOptions,
FilterStore,
FilterValue,
LoadedFilterValue
} from './create-filter/index.js'
export { CrossTabClient } from './cross-tab-client/index.js'
export { encryptActions } from './encrypt-actions/index.js'
export { favicon } from './favicon/index.js'
export { IndexedStore } from './indexed-store/index.js'
export { log } from './log/index.js'
export {
ChannelDeniedError,
ChannelError,
ChannelNotFoundError,
ChannelServerError,
LoguxUndoError
} from './logux-undo-error/index.js'
export { emptyInTest, prepareForTest } from './prepare-for-test/index.js'
export { request, RequestOptions } from './request/index.js'
export { status } from './status/index.js'
export {
buildNewSyncMap,
changeSyncMap,
changeSyncMapById,
createSyncMap,
deleteSyncMap,
deleteSyncMapById,
ensureLoaded,
LoadedSyncMapValue,
LoadedValue,
loadValue,
SyncMapStore,
syncMapTemplate,
SyncMapTemplate,
SyncMapTemplateLike,
SyncMapValue
} from './sync-map-template/index.js'
export { TestClient } from './test-client/index.js'
export { TestServer } from './test-server/index.js'
export { track } from './track/index.js'