{ on: { EVENT: { actions: "someAction", target: "someState", cond: (context, event) => { // logic that determines // whether to return true or false } } } }
{ on: { EVENT: [ { target: "foo", cond: "someGuard" }, { target: "bar", cond: "someAnotherGuard" } ] } }
By Kuba Skoneczny