zigbee-herdsman-zigate
Version:
An open source ZigBee gateway solution with node.js.
20 lines (18 loc) • 522 B
text/typescript
import DataType from './dataType';
import BuffaloZclDataType from './buffaloZclDataType';
import * as TsType from '../tstype';
interface ParameterDefinition extends TsType.Parameter {
conditions?: {
type: 'statusEquals' |
'statusNotEquals' |
'minimumRemainingBufferBytes' |
'directionEquals' |
'dataTypeValueTypeEquals';
value?: number | string;
}[];
name: string;
type: DataType | BuffaloZclDataType;
}
export {
ParameterDefinition,
};