-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.ts
30 lines (30 loc) · 877 Bytes
/
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
export { default as action } from './action';
export { default as asyncState, type AsyncState } from './async-state';
export { AsyncStatus } from './constants';
export { AwaitableEvent, flush, Registry } from './core';
export { default as effect } from './effect';
export { default as familyState } from './family-state';
export { queue, registry } from './global';
export {
delay,
fork,
getAggregatedAsyncStatus,
isPromiseLike,
isReadableAsyncState,
rejectAfter,
SyncQueue,
} from './lib';
export { default as scenario, type Config as ScenarioConfig } from './scenario';
export { default as selector } from './selector';
export { default as state, type State } from './state';
export type {
AsyncSetter,
AsyncValue,
FamilyState,
InferReadableType,
ReadableAsyncState,
ReadableState,
Setter,
WritableAsyncState,
WritableState,
} from './types';