homebridge-plugin-eufy-security
Version:
Eufy Security homebridge plugin for video doorbell.
17 lines • 812 B
TypeScript
import { PlatformAccessory, CharacteristicGetCallback } from 'homebridge';
import { FullDevice } from 'eufy-node-client/src/http/http-response.models';
import { EufySecurityHomebridgePlatform } from './platform';
/**
* Platform Accessory
* An instance of this class is created for each accessory your platform registers
* Each accessory may expose multiple services of different service types.
*/
export declare class DoorbellPlatformAccessory {
private readonly platform;
private readonly accessory;
private readonly device;
private service;
constructor(platform: EufySecurityHomebridgePlatform, accessory: PlatformAccessory, device: FullDevice);
handleProgrammableSwitchEventGet(callback: CharacteristicGetCallback): void;
}
//# sourceMappingURL=doorbell-platform-accessory.d.ts.map