@ronniepettersson/homebridge-dummy
Version:
Create Homebridge accessories to help with automation and control — scheduling, delays, sensors, commands, webhooks, and more
11 lines (10 loc) • 537 B
TypeScript
import { PlatformAccessory } from 'homebridge';
import { CharacteristicType, GroupConfig, ServiceType } from '../model/types.js';
import { WebhookManager } from '../model/webhook.js';
import { Log } from '../tools/log.js';
export declare class GroupAccessory {
static identifier(groupName: string): string;
private readonly accessories;
constructor(Service: ServiceType, Characteristic: CharacteristicType, accessory: PlatformAccessory, config: GroupConfig, log: Log, webhookManager: WebhookManager);
teardown(): void;
}