UNPKG

@george.talusan/homebridge-eufy-robovac

Version:
18 lines (17 loc) 717 B
import type { API, Characteristic, DynamicPlatformPlugin, Logging, PlatformAccessory, PlatformConfig, Service } from 'homebridge'; declare const RoboVac: any; export declare class EufyRobovacHomebridgePlatform implements DynamicPlatformPlugin { readonly log: Logging; readonly config: PlatformConfig; readonly api: API; readonly Service: typeof Service; readonly Characteristic: typeof Characteristic; readonly accessories: PlatformAccessory[]; robovac: typeof RoboVac; connected: boolean; constructor(log: Logging, config: PlatformConfig, api: API); configureAccessory(accessory: PlatformAccessory): void; discoverDevices(): void; parseConfig(): boolean; } export {};