(e: KeyboardEvent)
| 1841 | } |
| 1842 | |
| 1843 | function wantsNativeContextMenuKey(e: KeyboardEvent): boolean { |
| 1844 | return e.key === 'ContextMenu' || (e.shiftKey && e.key === 'F10') |
| 1845 | } |
| 1846 | |
| 1847 | function getActiveTabContextMenuTarget( |
| 1848 | state: ReturnType<typeof useStore.getState> |
no outgoing calls
no test coverage detected