typesafe-actions
Version:
Typesafe Action Creators for Redux / Flux Architectures (in TypeScript)
18 lines (17 loc) • 939 B
TypeScript
/**
* @name typesafe-actions
* @author Piotr Witek <piotrek.witek@gmail.com> (http://piotrwitek.github.io)
* @copyright Copyright (c) 2017 Piotr Witek
* @license MIT
*/
/** Public API */
export { action } from './action';
export { createAction } from './create-action';
export { createCustomAction } from './create-custom-action';
export { createAsyncAction } 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 { Types, ActionType, StateType, TypeConstant, Action, Reducer, EmptyAction, PayloadAction, PayloadMetaAction, ActionCreator, EmptyActionCreator, PayloadActionCreator, PayloadMetaActionCreator, ActionCreatorTypeMetadata, ActionBuilder, ActionCreatorBuilder, AsyncActionCreatorBuilder, } from './type-helpers';
export { default as deprecated } from './deprecated';