Skip to content

Instantly share code, notes, and snippets.

@tgevaert
Last active May 27, 2020 01:18
Show Gist options
  • Save tgevaert/cd9d8e62dd002d0978083ad8463eb292 to your computer and use it in GitHub Desktop.
Save tgevaert/cd9d8e62dd002d0978083ad8463eb292 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
// Pujoles. The Machine
const playBall = Machine({
id: 'pujoles',
initial: 'batterup',
context: {
balls: 0,
strikes: 0,
pitches: 0,
},
states: {
batterup: {},
strikeout: {
type: 'final',
},
flyout: {
type: 'final',
},
sacfly: {
type: 'final',
},
walk: {
type: 'final',
},
ibb: {
type: 'final',
},
single: {
type: 'final',
},
double: {
type: 'final',
},
triple: {
type: 'final',
},
homerun: {
type: 'final',
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment