mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-16 23:10:29 +00:00
fix type error
This commit is contained in:
Vendored
+2
-2
@@ -7,9 +7,9 @@
|
||||
* inspired by @types/redux-actions, thanks.
|
||||
*/
|
||||
|
||||
import Redux from 'redux';
|
||||
import * as Redux from 'redux';
|
||||
|
||||
export as namespace ReduxAction
|
||||
export as namespace ReduxAction;
|
||||
|
||||
interface BaseAction {
|
||||
type: string;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"dependencies": {
|
||||
"redux": "^3.6.0"
|
||||
"redux": "^3.6.0",
|
||||
"redux-thunk": "^2.2.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
|
||||
import * as ReduxAction from 'redux-action';
|
||||
import * as ReduxThunk from 'redux-thunk';
|
||||
import * as Redux from 'redux';
|
||||
|
||||
interface Payload {
|
||||
|
||||
Reference in New Issue
Block a user