Skip to content

Commit 128c540

Browse files
committed
Updated playground
1 parent 93be945 commit 128c540

File tree

4 files changed

+41
-37
lines changed

4 files changed

+41
-37
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,9 @@ declare module 'MyTypes' {
10571057
}
10581058

10591059
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+
}
10611063
}
10621064

10631065
```

playground/package-lock.json

+29-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

playground/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
"tsc:watch": "tsc -p ./ --noEmit -w"
2020
},
2121
"dependencies": {
22-
"@babel/polyfill": "7.4.3",
22+
"@babel/polyfill": "7.4.4",
2323
"@types/jest": "24.0.11",
24-
"@types/node": "11.13.6",
24+
"@types/node": "11.13.8",
2525
"@types/prop-types": "15.7.1",
2626
"@types/react": "16.8.14",
2727
"@types/react-dom": "16.8.4",
@@ -38,16 +38,16 @@
3838
"react-router-dom": "4.3.1",
3939
"react-router-redux": "5.0.0-alpha.8",
4040
"react-scripts": "2.1.8",
41-
"react-testing-library": "6.1.2",
41+
"react-testing-library": "7.0.0",
4242
"redux": "4.0.1",
4343
"redux-observable": "1.1.0",
4444
"redux-thunk": "2.3.0",
4545
"reselect": "4.0.0",
46-
"rxjs": "6.4.0",
46+
"rxjs": "6.5.1",
4747
"tslib": "1.9.3",
4848
"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",
5151
"utility-types": "3.5.0"
5252
},
5353
"browserslist": [

playground/src/store/types.d.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,7 @@ declare module 'MyTypes' {
77
}
88

99
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+
}
1113
}

0 commit comments

Comments
 (0)