homebridge-deconz-converter
Version:
Homebridge plugin for converting Deconz roller shutters interpreted as light into Homekit Window Covering type.
10 lines • 584 B
TypeScript
import { AxiosInstance } from 'axios';
export default class HttpClient {
httpClient: AxiosInstance;
constructor(host: string, useHTTPS: boolean, apiKey: string);
getLightByUniqueId(uniqueId: string): Promise<import("axios").AxiosResponse<any, any>>;
updateLightBrightness(bri: number, uniqueId: string): Promise<import("axios").AxiosResponse<any, any>>;
setLightOn(uniqueId: string): Promise<import("axios").AxiosResponse<any, any>>;
getSensorState(uniqueId: string): Promise<import("axios").AxiosResponse<any, any>>;
}
//# sourceMappingURL=httpClient.d.ts.map