(command: string)
| 21 | const TYPING_NUMERIC_FLAG_MAP = new Map<string, 'delayMs'>([['--delay-ms', 'delayMs']]); |
| 22 | |
| 23 | export function isClickLikeCommand(command: string): command is 'click' | 'press' { |
| 24 | return command === 'click' || command === 'press'; |
| 25 | } |
| 26 | |
| 27 | export function isTouchTargetCommand(command: string): command is 'click' | 'press' | 'longpress' { |
| 28 | return isClickLikeCommand(command) || command === 'longpress'; |
no outgoing calls
no test coverage detected