1 | var ActionTypes;
|
2 |
|
3 | (function (ActionTypes) {
|
4 | ActionTypes["Start"] = "xstate.start";
|
5 | ActionTypes["Stop"] = "xstate.stop";
|
6 | ActionTypes["Raise"] = "xstate.raise";
|
7 | ActionTypes["Send"] = "xstate.send";
|
8 | ActionTypes["Cancel"] = "xstate.cancel";
|
9 | ActionTypes["NullEvent"] = "";
|
10 | ActionTypes["Assign"] = "xstate.assign";
|
11 | ActionTypes["After"] = "xstate.after";
|
12 | ActionTypes["DoneState"] = "done.state";
|
13 | ActionTypes["DoneInvoke"] = "done.invoke";
|
14 | ActionTypes["Log"] = "xstate.log";
|
15 | ActionTypes["Init"] = "xstate.init";
|
16 | ActionTypes["Invoke"] = "xstate.invoke";
|
17 | ActionTypes["ErrorExecution"] = "error.execution";
|
18 | ActionTypes["ErrorCommunication"] = "error.communication";
|
19 | ActionTypes["ErrorPlatform"] = "error.platform";
|
20 | ActionTypes["ErrorCustom"] = "xstate.error";
|
21 | ActionTypes["Update"] = "xstate.update";
|
22 | ActionTypes["Pure"] = "xstate.pure";
|
23 | ActionTypes["Choose"] = "xstate.choose";
|
24 | })(ActionTypes || (ActionTypes = {}));
|
25 |
|
26 | var SpecialTargets;
|
27 |
|
28 | (function (SpecialTargets) {
|
29 | SpecialTargets["Parent"] = "#_parent";
|
30 | SpecialTargets["Internal"] = "#_internal";
|
31 | })(SpecialTargets || (SpecialTargets = {}));
|
32 |
|
33 | export { ActionTypes, SpecialTargets };
|