BluetoothGattWriteMode import { BluetoothGattWriteMode } from "destack:device/binding"; Bluetooth GATT write mode. export enum BluetoothGattWriteMode { WithResponse = 1, WithoutResponse = 2, } language/library/src/device/binding/bluetooth.ds:79:84 Variants WithResponse = 1 Write with an ATT response. WithoutResponse = 2 Write without an ATT response.