(platform: string)
| 488 | } |
| 489 | |
| 490 | function getDevicePlatformInfo(platform: string): DevicePlatformInfo { |
| 491 | return ( |
| 492 | DEVICE_PLATFORM_MAP[platform] ?? { |
| 493 | label: `${platform} Devices`, |
| 494 | emoji: '\u{1F4F1}', |
| 495 | order: 99, |
| 496 | } |
| 497 | ); |
| 498 | } |
| 499 | |
| 500 | function createDeviceListItems( |
| 501 | result: Extract<ToolDomainResult, { kind: 'device-list' }>, |
no outgoing calls
no test coverage detected