zwave-js
Version:
Z-Wave driver written entirely in JavaScript/TypeScript
8 lines • 1.01 kB
TypeScript
import { type AssociationCCSupportedGroupingsGet, type AssociationGroupInfoCCCommandListGet, type AssociationGroupInfoCCInfoGet, type AssociationGroupInfoCCNameGet, type PersistValuesContext } from "@zwave-js/cc";
import { type LogNode } from "@zwave-js/core";
import type { ZWaveNode } from "../Node.js";
export declare function handleAGINameGet(ctx: PersistValuesContext & LogNode, node: ZWaveNode, command: AssociationGroupInfoCCNameGet): Promise<void>;
export declare function handleAGIInfoGet(ctx: PersistValuesContext & LogNode, node: ZWaveNode, command: AssociationGroupInfoCCInfoGet): Promise<void>;
export declare function handleAGICommandListGet(ctx: PersistValuesContext & LogNode, node: ZWaveNode, command: AssociationGroupInfoCCCommandListGet): Promise<void>;
export declare function handleAssociationSupportedGroupingsGet(ctx: PersistValuesContext & LogNode, node: ZWaveNode, command: AssociationCCSupportedGroupingsGet): Promise<void>;
//# sourceMappingURL=AssociationGroupInformationCC.d.ts.map