This commit is contained in:
7
node_modules/redux-thunk/es/index.d.ts
generated
vendored
Normal file
7
node_modules/redux-thunk/es/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
import type { Action, AnyAction } from 'redux';
|
||||
import type { ThunkMiddleware } from './types';
|
||||
export type { ThunkAction, ThunkDispatch, ThunkActionDispatch, ThunkMiddleware } from './types';
|
||||
declare const thunk: ThunkMiddleware<any, AnyAction, undefined> & {
|
||||
withExtraArgument<ExtraThunkArg, State = any, BasicAction extends Action<any> = AnyAction>(extraArgument: ExtraThunkArg): ThunkMiddleware<State, BasicAction, ExtraThunkArg>;
|
||||
};
|
||||
export default thunk;
|
||||
Reference in New Issue
Block a user