homebridge-lg-ac
Version:
A Homebridge plugin for controlling/monitoring LG AirConditioning device via LG ThinQ platform.
17 lines • 767 B
TypeScript
import { Categories } from 'homebridge';
import { Device } from './lib/Device';
import AirConditioner from './devices/AirConditioner';
/**
* Platform Accessory
* An instance of this class is created for each accessory your platform registers
* Each accessory may expose multiple services of different service types.
*/
export declare class Helper {
static make(device: Device): typeof AirConditioner | null;
static category(device: Device): Categories.OTHER | Categories.AIR_CONDITIONER;
}
export declare function isObject(item: any): any;
export declare function mergeDeep(target: any, ...sources: any[]): any;
export declare function fToC(fahrenheit: any): number;
export declare function cToF(celsius: any): number;
//# sourceMappingURL=helper.d.ts.map