( command: unknown )
| 93 | } |
| 94 | |
| 95 | function isNestedChoiceCommand( |
| 96 | command: unknown |
| 97 | ): command is INestedChoiceCommand { |
| 98 | return hasCommandType(command, CommandType.NestedChoice); |
| 99 | } |
| 100 | |
| 101 | function isEditorCommand(command: unknown): command is IEditorCommand { |
| 102 | return hasCommandType(command, CommandType.EditorCommand); |
no test coverage detected