UNPKG

@ronniepettersson/homebridge-dummy

Version:

Create Homebridge accessories to help with automation and control — scheduling, delays, sensors, commands, webhooks, and more

6 lines (5 loc) 435 B
import { PlatformAccessory } from 'homebridge'; import { DummyAccessory } from './base.js'; import { CharacteristicType, DummyConfig, ServiceType } from '../model/types.js'; import { Log } from '../tools/log.js'; export declare function createDummyAccessory(Service: ServiceType, Characteristic: CharacteristicType, accessory: PlatformAccessory, config: DummyConfig, log: Log, isGrouped?: boolean): DummyAccessory<DummyConfig> | null;