Switches WriteValue to use BufferSource

This commit is contained in:
Anthony Urena 2018-03-24 10:53:48 -04:00
parent b8279b376b
commit 40235da2d3
3 changed files with 12 additions and 8 deletions

View file

@ -11,7 +11,6 @@ interface BluetoothRemoteGATTDescriptor {
readonly attribute DOMString uuid;
readonly attribute ByteString? value;
Promise<ByteString> readValue();
//Promise<DataView> readValue();
Promise<void> writeValue(sequence<octet> value);
//Promise<void> writeValue(BufferSource value);
// Promise<DataView> readValue();
Promise<void> writeValue(BufferSource value);
};