UNPKG

rxpoweredup

Version:

A Typescript RxJS-based library for controlling LEGO Powered UP hubs & peripherals.

8 lines (7 loc) 326 B
import type { IHubScannerErrorFactory } from './i-hub-scanner-error-factory'; import { IHubScanner } from './i-hub-scanner'; export declare class HubScannerFactory { private readonly hubScannerErrorFactory; constructor(hubScannerErrorFactory: IHubScannerErrorFactory); create(bluetooth: Bluetooth): IHubScanner; }