UNPKG

homebridge-create-ceiling-fan-enhanced

Version:

Enhanced CREATE Ceiling Fan plugin with beep control for Homebridge

19 lines 831 B
import { API, Characteristic, DynamicPlatformPlugin, Logger, PlatformAccessory, PlatformConfig, Service } from 'homebridge'; /** * HomebridgePlatform * This class is the main constructor for your plugin, this is where you should * parse the user config and discover/register accessories with Homebridge. */ export declare class HomebridgeCreateCeilingFan implements DynamicPlatformPlugin { readonly log: Logger; readonly config: PlatformConfig; readonly api: API; readonly Service: typeof Service; readonly Characteristic: typeof Characteristic; readonly accessories: PlatformAccessory[]; private devices; constructor(log: Logger, config: PlatformConfig, api: API); configureAccessory(accessory: PlatformAccessory): void; discoverDevices(): void; } //# sourceMappingURL=platform.d.ts.map