UNPKG

redux-logic

Version:

Redux middleware for organizing all your business logic. Intercept actions and perform async processing.

19 lines (17 loc) 767 B
/* * *** MIT LICENSE *** * ------------------------------------------------------------------------- * This code may be modified and distributed under the MIT license. * See the LICENSE file for details. * ------------------------------------------------------------------------- * * @summary Definitions for redux-logic * * @author Alvis HT Tang <alvis@hilbert.space> * @license MIT * @copyright Copyright (c) 2018 - All Rights Reserved. * ------------------------------------------------------------------------- */ export { Action, ErroneousAction, StandardAction } from './action'; export { configureLogic, createLogic, Logic } from './logic'; export { createLogicMiddleware, LogicMiddleware } from './middleware';