Skip to content

Commit 4439c31

Browse files
committed
Merge branch 'master' into replace-reducer-rebase
2 parents fae6699 + 1766b93 commit 4439c31

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

package-lock.json

Lines changed: 15 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@
8989
"rollup-plugin-terser": "^5.3.0",
9090
"rollup-plugin-typescript2": "^0.27.0",
9191
"rxjs": "^6.5.5",
92-
"typescript": "^3.8.3"
92+
"typescript": "^3.8.3",
93+
"typings-tester": "^0.3.2"
9394
},
9495
"npmName": "redux",
9596
"npmFileMap": [

src/types/store.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Action, AnyAction } from './actions'
22
import { Reducer } from './reducers'
3+
import '../utils/symbol-observable'
34

45
/**
56
* Internal "virtual" symbol used to make the `CombinedState` type unique.

test/typescript.spec.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { checkDirectory } from 'typings-tester'
2+
3+
describe('TypeScript definitions', function () {
4+
it('should compile against index.d.ts', () => {
5+
checkDirectory(__dirname + '/typescript')
6+
})
7+
})

0 commit comments

Comments
 (0)