(command: unknown)
| 81 | } |
| 82 | |
| 83 | function isUserScriptCommand(command: unknown): command is IUserScript { |
| 84 | return hasCommandType(command, CommandType.UserScript); |
| 85 | } |
| 86 | |
| 87 | function isChoiceCommand(command: unknown): command is IChoiceCommand { |
| 88 | return hasCommandType(command, CommandType.Choice); |
no test coverage detected