homebridge-http-motion-sensor
Version:
Homebridge plugin for a remote motion sensor based on http
10 lines (9 loc) • 410 B
TypeScript
import { AccessoryPlugin, API, Logging, StaticPlatformPlugin } from 'homebridge';
export declare class HttpMotionSensorPlatform implements StaticPlatformPlugin {
private readonly log;
private readonly api;
private readonly config;
constructor(log: Logging, config: unknown, api: API);
accessories(callback: (foundAccessories: AccessoryPlugin[]) => void): void;
private get sensors();
}