Skip to content

Commit dfcfab2

Browse files
committed
some more type imports
1 parent f0593c4 commit dfcfab2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/utils/isAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Action } from '../types/actions'
1+
import type { Action } from '../types/actions'
22
import isPlainObject from './isPlainObject'
33

44
export default function isAction(action: unknown): action is Action<string> {

test/bindActionCreators.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { bindActionCreators, createStore } from '../src'
2-
import { ActionCreator, Store } from '../src'
2+
import type { ActionCreator, Store } from '../src'
33
import { todos } from './helpers/reducers'
44
import * as actionCreators from './helpers/actionCreators'
55

0 commit comments

Comments
 (0)