UNPKG

homebridge-tessie

Version:

Connect Homebridge to your Tessie account.

10 lines (9 loc) 389 B
import { Characteristic, CharacteristicValue } from "homebridge"; import { VehicleAccessory } from "../vehicle.js"; import { BaseService } from "./base.js"; export declare class ChargeCurrentService extends BaseService { min: number; max: number; constructor(parent: VehicleAccessory); setLevel(value: CharacteristicValue, characteristic: Characteristic): Promise<void>; }