@pietrolubini/homebridge-ecoflow
Version:
Homebridge plugin for EcoFlow devices
8 lines (7 loc) • 512 B
TypeScript
import { EcoFlowAccessoryBase } from '@ecoflow/accessories/ecoFlowAccessoryBase';
import { AdditionalOutletCharacteristicType as OutletCharacteristicType } from '@ecoflow/config';
import { OutletServiceBase } from '@ecoflow/services/outletServiceBase';
export declare class OutletService extends OutletServiceBase {
constructor(ecoFlowAccessory: EcoFlowAccessoryBase, additionalCharacteristics?: OutletCharacteristicType[]);
protected processOnSetOn(value: boolean, revert: () => void): Promise<void>;
}