(deviceId: string)
| 56 | } |
| 57 | |
| 58 | export function resolveDeviceName(deviceId: string): string | undefined { |
| 59 | const names = loadDeviceNames(); |
| 60 | return names.get(deviceId); |
| 61 | } |
| 62 | |
| 63 | export function formatDeviceId(deviceId: string): string { |
| 64 | const name = resolveDeviceName(deviceId); |
no test coverage detected