@pietrolubini/homebridge-ecoflow
Version:
Homebridge plugin for EcoFlow devices
10 lines (9 loc) • 643 B
TypeScript
import { DeltaProAllQuotaData } from '@ecoflow/accessories/batteries/deltapro/interfaces/deltaProHttpApiContracts';
import { EcoFlowAccessoryWithQuotaBase } from '@ecoflow/accessories/ecoFlowAccessoryWithQuotaBase';
import { SwitchServiceBase } from '@ecoflow/services/switchServiceBase';
export declare class SwitchXboostService extends SwitchServiceBase {
protected readonly ecoFlowAccessory: EcoFlowAccessoryWithQuotaBase<DeltaProAllQuotaData>;
constructor(ecoFlowAccessory: EcoFlowAccessoryWithQuotaBase<DeltaProAllQuotaData>);
protected processOnSetOn(value: boolean, revert: () => void): Promise<void>;
private sendOn;
}