@pietrolubini/homebridge-ecoflow
Version:
Homebridge plugin for EcoFlow devices
11 lines (10 loc) • 711 B
TypeScript
import { EcoFlowAccessoryWithQuotaBase } from '@ecoflow/accessories/ecoFlowAccessoryWithQuotaBase';
import { GlacierAllQuotaData } from '@ecoflow/accessories/glacier/interfaces/glacierHttpApiContracts';
import { IceCubeShapeType } from '@ecoflow/accessories/glacier/interfaces/glacierMqttApiContracts';
import { SwitchServiceBase } from '@ecoflow/services/switchServiceBase';
export declare class SwitchMakeIceService extends SwitchServiceBase {
private readonly iceCubeShapeType;
constructor(ecoFlowAccessory: EcoFlowAccessoryWithQuotaBase<GlacierAllQuotaData>, iceCubeShapeType: IceCubeShapeType);
protected processOnSetOn(value: boolean, revert: () => void): Promise<void>;
private sendOn;
}