# BluetoothTransport

`import { BluetoothTransport } from "destack:device/binding";`

Bluetooth LE transport classification.

```ds title="BluetoothTransport"
export enum BluetoothTransport {
    Unknown = 0,
    LowEnergy = 1,
    DualMode = 2,
}
```

[language/library/src/device/binding/bluetooth.ds:26:33](https://github.com/destack-sh/destack/blob/main/language/library/src/device/binding/bluetooth.ds#L26-L33)

## Variants

### `Unknown = 0`

Host did not classify the transport.

### `LowEnergy = 1`

LE-only transport.

### `DualMode = 2`

Dual-mode transport.
