| 4 | import { quickApplyStyle, quickSaveStyle } from './extraNetworks'; |
| 5 | |
| 6 | interface ContextMenuItem { |
| 7 | id: string; |
| 8 | name: string; |
| 9 | func: () => void; |
| 10 | primary: boolean; |
| 11 | } |
| 12 | |
| 13 | const contextMenuInit = () => { |
| 14 | let eventListenerApplied = false; |
nothing calls this directly
no outgoing calls
no test coverage detected