@nlabs/arkhamjs-middleware-redux
Version:
Integrate ArkhamJS state management within Redux
13 lines (12 loc) • 421 B
TypeScript
/**
* Copyright (c) 2018-Present, Nitrogen Labs, Inc.
* Copyrights licensed under the MIT License. See the accompanying LICENSE file for terms.
*/
import { FluxAction } from '@nlabs/arkhamjs';
import { Store } from 'redux';
export declare class ReduxMiddleware {
name: string;
reduxStore: Store<any>;
constructor(reduxStore: Store<any>, name: string);
postDispatch(action: any): Promise<FluxAction>;
}