File tree 2 files changed +8
-10
lines changed
examples/with-mobx-state-tree-typescript
2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 9
9
},
10
10
"dependencies" : {
11
11
"@zeit/next-typescript" : " 1.1.0" ,
12
- "mobx" : " 5.0.5 " ,
13
- "mobx-react" : " 5.2.5 " ,
14
- "mobx-state-tree" : " 3.2.3 " ,
12
+ "mobx" : " ^5.9.0 " ,
13
+ "mobx-react" : " ^5.4.3 " ,
14
+ "mobx-state-tree" : " ^3.11.0 " ,
15
15
"next" : " latest" ,
16
16
"react" : " ^16.7.0" ,
17
17
"react-dom" : " ^16.7.0" ,
20
20
"devDependencies" : {
21
21
"@types/next" : " ^6.1.4" ,
22
22
"@types/react" : " ^16.4.12" ,
23
- "@babel/plugin-proposal-decorators" : " ^7.1.2 " ,
23
+ "@babel/plugin-proposal-decorators" : " ^7.3.0 " ,
24
24
"tslint" : " ^5.9.1" ,
25
25
"tslint-config-standard" : " ^7.0.0" ,
26
26
"tslint-loader" : " ^3.5.3" ,
Original file line number Diff line number Diff line change @@ -29,11 +29,11 @@ const Store = types
29
29
return { start, stop, update } ;
30
30
} ) ;
31
31
32
- type IStore = Instance < typeof Store > ;
33
- type IStoreSnapshotIn = SnapshotIn < typeof Store > ;
34
- type IStoreSnapshotOut = SnapshotOut < typeof Store > ;
32
+ export type IStore = Instance < typeof Store > ;
33
+ export type IStoreSnapshotIn = SnapshotIn < typeof Store > ;
34
+ export type IStoreSnapshotOut = SnapshotOut < typeof Store > ;
35
35
36
- const initializeStore = ( isServer , snapshot = null ) => {
36
+ export const initializeStore = ( isServer , snapshot = null ) => {
37
37
if ( isServer ) {
38
38
store = Store . create ( { foo :6 , lastUpdate : Date . now ( ) } ) ;
39
39
}
@@ -45,5 +45,3 @@ const initializeStore = (isServer, snapshot = null) => {
45
45
}
46
46
return store ;
47
47
} ;
48
-
49
- export { initializeStore , IStore , IStoreSnapshotIn , IStoreSnapshotOut } ;
You can’t perform that action at this time.
0 commit comments