File tree 4 files changed +41
-37
lines changed
4 files changed +41
-37
lines changed Original file line number Diff line number Diff line change @@ -1057,7 +1057,9 @@ declare module 'MyTypes' {
1057
1057
}
1058
1058
1059
1059
declare module ' typesafe-actions' {
1060
- export type RootAction = ActionType <typeof import (' ./root-action' ).default >;
1060
+ interface Types {
1061
+ RootAction: ActionType <typeof import (' ./root-action' ).default >;
1062
+ }
1061
1063
}
1062
1064
1063
1065
` ` `
Original file line number Diff line number Diff line change 19
19
"tsc:watch" : " tsc -p ./ --noEmit -w"
20
20
},
21
21
"dependencies" : {
22
- "@babel/polyfill" : " 7.4.3 " ,
22
+ "@babel/polyfill" : " 7.4.4 " ,
23
23
"@types/jest" : " 24.0.11" ,
24
- "@types/node" : " 11.13.6 " ,
24
+ "@types/node" : " 11.13.8 " ,
25
25
"@types/prop-types" : " 15.7.1" ,
26
26
"@types/react" : " 16.8.14" ,
27
27
"@types/react-dom" : " 16.8.4" ,
38
38
"react-router-dom" : " 4.3.1" ,
39
39
"react-router-redux" : " 5.0.0-alpha.8" ,
40
40
"react-scripts" : " 2.1.8" ,
41
- "react-testing-library" : " 6.1.2 " ,
41
+ "react-testing-library" : " 7.0.0 " ,
42
42
"redux" : " 4.0.1" ,
43
43
"redux-observable" : " 1.1.0" ,
44
44
"redux-thunk" : " 2.3.0" ,
45
45
"reselect" : " 4.0.0" ,
46
- "rxjs" : " 6.4.0 " ,
46
+ "rxjs" : " 6.5.1 " ,
47
47
"tslib" : " 1.9.3" ,
48
48
"tslint" : " 5.16.0" ,
49
- "typesafe-actions" : " 4.1.1 " ,
50
- "typescript" : " 3.4.4 " ,
49
+ "typesafe-actions" : " 4.2.0 " ,
50
+ "typescript" : " 3.4.5 " ,
51
51
"utility-types" : " 3.5.0"
52
52
},
53
53
"browserslist" : [
Original file line number Diff line number Diff line change @@ -7,5 +7,7 @@ declare module 'MyTypes' {
7
7
}
8
8
9
9
declare module 'typesafe-actions' {
10
- export type RootAction = ActionType < typeof import ( './root-action' ) . default > ;
10
+ interface Types {
11
+ RootAction : ActionType < typeof import ( './root-action' ) . default > ;
12
+ }
11
13
}
You can’t perform that action at this time.
0 commit comments