homebridge-touchwand-google
Version:
8 lines (7 loc) • 421 B
TypeScript
import type { SmartHomeV1ExecuteRequestCommands, SmartHomeV1SyncDevices } from 'actions-on-google';
import { HapService, AccessoryTypeExecuteResponse } from '../interfaces';
export declare class HumiditySensor {
sync(service: HapService): SmartHomeV1SyncDevices;
query(service: HapService): any;
execute(service: HapService, command: SmartHomeV1ExecuteRequestCommands): AccessoryTypeExecuteResponse;
}