()
| 1 | import type { Command } from '../../commands.js' |
| 2 | |
| 3 | function isSupportedPlatform(): boolean { |
| 4 | if (process.platform === 'darwin') { |
| 5 | return true |
| 6 | } |
| 7 | if (process.platform === 'win32' && process.arch === 'x64') { |
| 8 | return true |
| 9 | } |
| 10 | return false |
| 11 | } |
| 12 | |
| 13 | const desktop = { |
| 14 | type: 'local-jsx', |
no outgoing calls
no test coverage detected