(command: unknown)
| 85 | } |
| 86 | |
| 87 | function isChoiceCommand(command: unknown): command is IChoiceCommand { |
| 88 | return hasCommandType(command, CommandType.Choice); |
| 89 | } |
| 90 | |
| 91 | function isWaitCommand(command: unknown): command is IWaitCommand { |
| 92 | return hasCommandType(command, CommandType.Wait); |
no test coverage detected