UNPKG

zigbee-herdsman-zigate

Version:

An open source ZigBee gateway solution with node.js.

13 lines 505 B
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, }; //# sourceMappingURL=tstype.d.ts.map