UNPKG

homebridge-touchwand-google

Version:
30 lines (29 loc) 871 B
import { HapService, AccessoryTypeExecuteResponse } from '../interfaces'; export declare class LockMechanism { twoFactorRequired: boolean; sync(service: HapService): { id: string; type: string; traits: string[]; name: { defaultNames: any[]; name: string; nicknames: any[]; }; willReportState: boolean; deviceInfo: { manufacturer: any; model: any; }; customData: { aid: number; iid: number; instanceUsername: string; instanceIpAddress: string; instancePort: number; }; }; query(service: HapService): any; execute(service: HapService, command: any): AccessoryTypeExecuteResponse; is2faRequired(command: any): boolean; }