(element: Element)
| 12 | ] |
| 13 | |
| 14 | export function isClickableInput(element: Element): boolean { |
| 15 | return ( |
| 16 | isElementType(element, 'button') || |
| 17 | (isElementType(element, 'input') && |
| 18 | CLICKABLE_INPUT_TYPES.includes(element.type)) |
| 19 | ) |
| 20 | } |
no test coverage detected