UNPKG

@homebridge-plugins/homebridge-smarthq

Version:

The SmartHQ plugin allows you to interact with SmartHQ Devices in HomeKit and with Siri.

12 lines 667 B
import type { PlatformAccessory } from 'homebridge'; import type { SmartHQPlatform } from '../platform.js'; import type { devicesConfig, SmartHqContext } from '../settings.js'; import { deviceBase } from './device.js'; export declare class SmartHQOven extends deviceBase { readonly platform: SmartHQPlatform; readonly device: SmartHqContext['device'] & devicesConfig; constructor(platform: SmartHQPlatform, accessory: PlatformAccessory<SmartHqContext>, device: SmartHqContext['device'] & devicesConfig); readErd(erd: string): Promise<string>; writeErd(erd: string, value: string | boolean): Promise<undefined>; } //# sourceMappingURL=oven.d.ts.map