UNPKG

939 BTypeScriptView Raw
1/**
2 * @name typesafe-actions
3 * @author Piotr Witek <piotrek.witek@gmail.com> (http://piotrwitek.github.io)
4 * @copyright Copyright (c) 2017 Piotr Witek
5 * @license MIT
6 */
7/** Public API */
8export { action } from './action';
9export { createAction } from './create-action';
10export { createCustomAction } from './create-custom-action';
11export { createAsyncAction } from './create-async-action';
12export { createReducer } from './create-reducer';
13export { getType } from './get-type';
14export { isOfType } from './is-of-type';
15export { isActionOf } from './is-action-of';
16export { Types, ActionType, StateType, TypeConstant, Action, Reducer, EmptyAction, PayloadAction, PayloadMetaAction, ActionCreator, EmptyActionCreator, PayloadActionCreator, PayloadMetaActionCreator, ActionCreatorTypeMetadata, ActionBuilder, ActionCreatorBuilder, AsyncActionCreatorBuilder, } from './type-helpers';
17export { default as deprecated } from './deprecated';