diff options
Diffstat (limited to 'components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl')
-rw-r--r-- | components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl b/components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl index 596a1095457..d1d937475b4 100644 --- a/components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl +++ b/components/script/dom/webidls/BluetoothRemoteGATTCharacteristic.webidl @@ -17,8 +17,8 @@ interface BluetoothRemoteGATTCharacteristic { //Promise<DataView> readValue(); Promise<void> writeValue(sequence<octet> value); //Promise<void> writeValue(BufferSource value); - //Promise<void> startNotifications(); - //Promise<void> stopNotifications(); + Promise<BluetoothRemoteGATTCharacteristic> startNotifications(); + Promise<BluetoothRemoteGATTCharacteristic> stopNotifications(); }; //BluetootRemoteGATTCharacteristic implements EventTarget; |