(target: Element)
| 1033 | } |
| 1034 | |
| 1035 | function isHTMLAnchorLink(target: Element): target is HTMLAnchorElement { |
| 1036 | return target.tagName === 'A' && target.hasAttribute('href'); |
| 1037 | } |
| 1038 | |
| 1039 | function isValidKeyboardEvent( |
| 1040 | event: KeyboardEvent | globalThis.KeyboardEvent, |
no test coverage detected