homebridge-tsvesync
Version:
Homebridge plugin for VeSync devices including Levoit air purifiers, humidifiers, and Etekcity smart outlets
22 lines • 503 B
TypeScript
/**
* Device capabilities interface
*/
export interface DeviceCapabilities {
power: boolean;
mode: boolean;
speed: boolean;
timer: boolean;
hasBrightness: boolean;
hasColorTemp: boolean;
hasColor: boolean;
hasSpeed: boolean;
hasMode: boolean;
hasTimer: boolean;
hasSchedule: boolean;
hasHumidity: boolean;
hasAirQuality: boolean;
hasWaterLevel: boolean;
hasChildLock: boolean;
hasSwingMode: boolean;
}
//# sourceMappingURL=types.d.ts.map