(request: DeviceInventoryRequest)
| 236 | } |
| 237 | |
| 238 | export async function listDeviceInventory(request: DeviceInventoryRequest): Promise<DeviceInfo[]> { |
| 239 | return (await readInjectedDeviceInventory(request)) ?? (await listLocalDeviceInventory(request)); |
| 240 | } |
| 241 | |
| 242 | async function readInjectedDeviceInventory( |
| 243 | request: DeviceInventoryRequest, |
no test coverage detected