UNPKG

homebridge-touchwand-google

Version:
11 lines (10 loc) 501 B
import type { SmartHomeV1ExecuteRequestCommands, SmartHomeV1SyncDevices } from 'actions-on-google'; import { HapService, AccessoryTypeExecuteResponse } from '../interfaces'; import { Hap } from '../hap'; export declare class TemperatureSensor { private hap; constructor(hap: Hap); sync(service: HapService): SmartHomeV1SyncDevices; query(service: HapService): any; execute(service: HapService, command: SmartHomeV1ExecuteRequestCommands): AccessoryTypeExecuteResponse; }