kaios-types
    Preparing search index...

    Interface BluetoothGattDescriptor

    bluetooth

    interface BluetoothGattDescriptor {
        characteristic: BluetoothGattCharacteristic;
        permissions: GattPermissions;
        uuid: string;
        value: ArrayBuffer | null;
        readValue(): Promise<ArrayBuffer>;
        writeValue(value: ArrayBuffer): Promise<void>;
    }
    Index

    Properties

    permissions: GattPermissions
    uuid: string
    value: ArrayBuffer | null

    Methods