import type { BLEAppearance } from "./BLEAppearance.js"; import type { BluetoothMajorClass } from "./BluetoothMajorClass.js"; import type { BluetoothMajorServiceClass } from "./BluetoothMajorServiceClass.js"; import type { BluetoothMinorClass } from "./BluetoothMinorClass.js"; export type BluetoothDevice = { id: string; name: string; address: number; majorServiceClasses: Array; majorClass: BluetoothMajorClass; minorClass: BluetoothMinorClass; /** * only available for low energy devices */ appearance: BLEAppearance | null; connected: boolean; paired: boolean; canPair: boolean; canDisconnect: boolean; isLowEnergy: boolean; }; //# sourceMappingURL=BluetoothDevice.d.ts.map