BluetoothEmulation.removeDescriptorRemoves the descriptor with |descriptorId| from the simulated central.
| Name | Type | Description |
|---|---|---|
descriptorId | string |
{
"id": 1,
"method": "BluetoothEmulation.removeDescriptor",
"params": {
"descriptorId": "descriptorId-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('BluetoothEmulation.removeDescriptor', {"descriptorId": "descriptorId-value"});
console.log(result);