()
| 4 | } |
| 5 | |
| 6 | export function getDesktopBridge(): DesktopBridge | null { |
| 7 | if (typeof window.electron === 'object') return window.electron as DesktopBridge; |
| 8 | if (typeof window.electrobun === 'object') return window.electrobun as DesktopBridge; |
| 9 | return null; |
| 10 | } |
no outgoing calls
no test coverage detected