homebridge
Version:
HomeKit support for the impatient
25 lines • 897 B
TypeScript
/**
* ValveConfigurationAndControl Cluster Behavior
*
* Handles open/close commands for water valves and irrigation controllers.
*/
import { ValveConfigurationAndControlServer } from '@matter/main/behaviors/valve-configuration-and-control';
import { ValveConfigurationAndControl } from '@matter/main/clusters/valve-configuration-and-control';
/**
* Custom ValveConfigurationAndControl Server that calls plugin handlers.
*/
export declare class HomebridgeValveConfigurationAndControlServer extends ValveConfigurationAndControlServer {
/**
* Get the registry for this behavior's endpoint
*/
private getRegistry;
/**
* Handle 'open' command
*/
open(request: ValveConfigurationAndControl.OpenRequest): Promise<void>;
/**
* Handle 'close' command
*/
close(): Promise<void>;
}
//# sourceMappingURL=ValveConfigurationAndControlBehavior.d.ts.map