forked from nanostores/nanostores
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
32 lines (32 loc) · 789 Bytes
/
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
export {
STORE_UNMOUNT_DELAY,
onNotify,
onStart,
onMount,
onBuild,
onStop,
onSet
} from './lifecycle/index.js'
export {
WritableStore,
MapStoreKeys,
StoreValue,
MapStore,
AnyStore,
Store,
map
} from './map/index.js'
export {
AnySyncTemplate,
TemplateValue,
TemplateStore,
mapTemplate,
MapTemplate
} from './map-template/index.js'
export { ReadableAtom, WritableAtom, atom, Atom } from './atom/index.js'
export { cleanTasks, startTask, allTasks, task } from './task/index.js'
export { action, actionFor, lastAction } from './action/index.js'
export { clean, cleanStores } from './clean-stores/index.js'
export { listenKeys } from './listen-keys/index.js'
export { keepMount } from './keep-mount/index.js'
export { computed } from './computed/index.js'