(command: string)
| 25 | } |
| 26 | |
| 27 | export function isTouchTargetCommand(command: string): command is 'click' | 'press' | 'longpress' { |
| 28 | return isClickLikeCommand(command) || command === 'longpress'; |
| 29 | } |
| 30 | |
| 31 | function isTypingCommand(command: string): command is 'type' | 'fill' { |
| 32 | return command === 'type' || command === 'fill'; |
no test coverage detected