zwave-js
Version:
Z-Wave driver written entirely in JavaScript/TypeScript
9 lines • 1.02 kB
TypeScript
import type { AssociationCCGet, AssociationCCRemove, AssociationCCSet, AssociationCCSpecificGroupGet, PersistValuesContext } from "@zwave-js/cc";
import { type LogNode } from "@zwave-js/core";
import type { ZWaveController } from "../../controller/Controller.js";
import type { ZWaveNode } from "../Node.js";
export declare function handleAssociationGet(ctx: PersistValuesContext & LogNode, controller: ZWaveController, node: ZWaveNode, command: AssociationCCGet): Promise<void>;
export declare function handleAssociationSet(ctx: PersistValuesContext & LogNode, controller: ZWaveController, node: ZWaveNode, command: AssociationCCSet): void;
export declare function handleAssociationRemove(ctx: PersistValuesContext & LogNode, controller: ZWaveController, node: ZWaveNode, command: AssociationCCRemove): void;
export declare function handleAssociationSpecificGroupGet(ctx: PersistValuesContext & LogNode, node: ZWaveNode, command: AssociationCCSpecificGroupGet): Promise<void>;
//# sourceMappingURL=AssociationCC.d.ts.map