zigbee-herdsman-zigate
Version:
An open source ZigBee gateway solution with node.js.
8 lines • 324 B
TypeScript
import { ZclFrame } from '../../zcl';
interface KeyValue {
[s: string]: number | string;
}
declare function attributeKeyValue(frame: ZclFrame): KeyValue;
declare function attributeList(frame: ZclFrame): Array<string | number>;
export { attributeKeyValue, attributeList, };
//# sourceMappingURL=zclFrameConverter.d.ts.map