We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0593c4 commit dfcfab2Copy full SHA for dfcfab2
src/utils/isAction.ts
@@ -1,4 +1,4 @@
1
-import { Action } from '../types/actions'
+import type { Action } from '../types/actions'
2
import isPlainObject from './isPlainObject'
3
4
export default function isAction(action: unknown): action is Action<string> {
test/bindActionCreators.spec.ts
@@ -1,5 +1,5 @@
import { bindActionCreators, createStore } from '../src'
-import { ActionCreator, Store } from '../src'
+import type { ActionCreator, Store } from '../src'
import { todos } from './helpers/reducers'
import * as actionCreators from './helpers/actionCreators'
5
0 commit comments