homebridge-touchwand-google
Version:
10 lines (9 loc) • 529 B
TypeScript
import type { SmartHomeV1ExecuteRequestCommands, SmartHomeV1SyncDevices } from 'actions-on-google';
import { HapService, AccessoryTypeExecuteResponse } from '../interfaces';
export declare class GarageDoorOpener {
twoFactorRequired: boolean;
sync(service: HapService): SmartHomeV1SyncDevices;
query(service: HapService): any;
execute(service: HapService, command: SmartHomeV1ExecuteRequestCommands): AccessoryTypeExecuteResponse;
is2faRequired(command: SmartHomeV1ExecuteRequestCommands): boolean;
}