All files / xstate/es actionTypes.js

0% Statements 0/12
100% Branches 0/0
100% Functions 0/0
0% Lines 0/12

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15                             
import { ActionTypes } from './types';
// xstate-specific action types
export var start = ActionTypes.Start;
export var stop = ActionTypes.Stop;
export var raise = ActionTypes.Raise;
export var send = ActionTypes.Send;
export var cancel = ActionTypes.Cancel;
export var _null = ActionTypes.Null;
export { _null as null };
export var assign = ActionTypes.Assign;
export var after = ActionTypes.After;
export var doneState = ActionTypes.DoneState;
export var log = ActionTypes.Log;
export var init = ActionTypes.Init;
export var invoke = ActionTypes.Invoke;