UNPKG

vastra-radiator-valve

Version:

Node.js library to query and configure Vastra's smart radiator valves.

7 lines (6 loc) 303 B
import { IGattCentral, IGattPeripheral } from "./bluetooth"; export default class NobleBluetoothCentral implements IGattCentral { startScanning(callback: (peripheral: IGattPeripheral) => void): Promise<void>; stopScanning(): Promise<void>; static create(): Promise<NobleBluetoothCentral>; }