Skip to content

Commit

Permalink
some more type imports
Browse files Browse the repository at this point in the history
  • Loading branch information
EskiMojo14 committed Feb 12, 2024
1 parent f0593c4 commit dfcfab2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/utils/isAction.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Action } from '../types/actions'
import type { Action } from '../types/actions'
import isPlainObject from './isPlainObject'

export default function isAction(action: unknown): action is Action<string> {
Expand Down
2 changes: 1 addition & 1 deletion test/bindActionCreators.spec.ts
Original file line number Diff line number Diff line change
@@ -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'

Expand Down

0 comments on commit dfcfab2

Please sign in to comment.