zigbee-herdsman
Version:
An open source ZigBee gateway solution with node.js.
9 lines • 548 B
TypeScript
import * as Zcl from "../../zspec/zcl";
import type { CustomClusters } from "../../zspec/zcl/definition/tstype";
interface KeyValue {
[s: string]: number | string;
}
declare function attributeKeyValue(frame: Zcl.Frame, deviceManufacturerID: number | undefined, customClusters: CustomClusters): KeyValue;
declare function attributeList(frame: Zcl.Frame, deviceManufacturerID: number | undefined, customClusters: CustomClusters): Array<string | number>;
export { attributeKeyValue, attributeList };
//# sourceMappingURL=zclFrameConverter.d.ts.map