/** * @name typesafe-actions * @author Piotr Witek (http://piotrwitek.github.io) * @copyright Copyright (c) 2017 Piotr Witek * @license MIT */ /** Public API */ export { action } from './action'; export { createAction } from './create-action'; export { createStandardAction } from './create-standard-action'; export { createCustomAction } from './create-custom-action'; export { createAsyncAction, AsyncActionCreator } from './create-async-action'; export { createReducer } from './create-reducer'; export { getType } from './get-type'; export { isOfType } from './is-of-type'; export { isActionOf } from './is-action-of'; export { TypeConstant, Action, ActionCreator, Reducer, EmptyAction, PayloadAction, MetaAction, PayloadMetaAction, EmptyAC, PayloadAC, PayloadMetaAC, TypeMeta, ActionType, StateType, Types, } from './type-helpers'; export { createActionDeprecated } from './create-action-deprecated';