( nextState: AnyMachineSnapshot, event: AnyEventObject, actorScope: AnyActorScope )
| 1784 | } |
| 1785 | |
| 1786 | function stopChildren( |
| 1787 | nextState: AnyMachineSnapshot, |
| 1788 | event: AnyEventObject, |
| 1789 | actorScope: AnyActorScope |
| 1790 | ) { |
| 1791 | return resolveActionsAndContext( |
| 1792 | nextState, |
| 1793 | event, |
| 1794 | actorScope, |
| 1795 | Object.values(nextState.children).map((child: any) => stopChild(child)), |
| 1796 | [], |
| 1797 | undefined |
| 1798 | ); |
| 1799 | } |
| 1800 | |
| 1801 | function selectTransitions( |
| 1802 | event: AnyEventObject, |
no test coverage detected