-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-index.js
53 lines (38 loc) · 842 Bytes
/
test-index.js
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
import Base from './src/base-class';
import {
bootStores,
baseReducerHash,
} from './src/stores';
import {
connectToLexicalScope,
connectDeviceFactory,
} from './src/devices';
import {
consumeActionByNamespace,
isolateMutationByDataPath,
applyPartialAction,
getNextState,
toJS,
rejectify,
} from './src/util';
import { bootApp } from './src/booting';
import networkMiddleware from './src/network-middleware';
import networkHandlers from './src/network-handlers';
import simpleHTTP from './src/network-handlers/simpleHTTP';
export {
Base,
networkMiddleware,
networkHandlers,
simpleHTTP,
consumeActionByNamespace,
isolateMutationByDataPath,
applyPartialAction,
getNextState,
toJS,
rejectify,
bootStores,
baseReducerHash,
connectToLexicalScope,
connectDeviceFactory,
bootApp
};