UNPKG

homebridge-virtual-accessories

Version:
15 lines (14 loc) 397 B
import { Validatable } from '../validatable.js'; /** * */ export declare class LightbulbConfiguration implements Validatable { defaultState: string; type: string; brightness: number; colorTemperatureKelvin: number; colorHex: string; private errorFields; readonly fieldNames: { [P in keyof this]?: P | undefined; }; isValid(prefix: string): [boolean, string[]]; }