@chazepps/homebridge-hejhome
Version:
The Hejhome plugin allows you to access your Hejhome device(s) from HomeKit.
15 lines (14 loc) • 547 B
TypeScript
import { PlatformAccessory } from 'homebridge';
import { HejhomePlatform } from '../platform.js';
import { HejDevice } from '../requests/get_devices.js';
import { Base } from './base.js';
export declare const EVENT_MOTION_DETECTED = "motionDetected";
export declare class SensorMo extends Base {
private platform;
private accessory;
private device;
private service;
constructor(platform: HejhomePlatform, accessory: PlatformAccessory, device: HejDevice);
private registerEventListeners;
private handleMotionDetected;
}