UNPKG

817 BJavaScriptView Raw
1import { ActionTypes } from './types.js';
2
3var start = ActionTypes.Start;
4var stop = ActionTypes.Stop;
5var raise = ActionTypes.Raise;
6var send = ActionTypes.Send;
7var cancel = ActionTypes.Cancel;
8var nullEvent = ActionTypes.NullEvent;
9var assign = ActionTypes.Assign;
10var after = ActionTypes.After;
11var doneState = ActionTypes.DoneState;
12var log = ActionTypes.Log;
13var init = ActionTypes.Init;
14var invoke = ActionTypes.Invoke;
15var errorExecution = ActionTypes.ErrorExecution;
16var errorPlatform = ActionTypes.ErrorPlatform;
17var error = ActionTypes.ErrorCustom;
18var update = ActionTypes.Update;
19var choose = ActionTypes.Choose;
20var pure = ActionTypes.Pure;
21
22export { after, assign, cancel, choose, doneState, error, errorExecution, errorPlatform, init, invoke, log, nullEvent, pure, raise, send, start, stop, update };