bacnet-device
Version:
A TypeScript library for implementing BACnet IP devices in Node.js.
13 lines • 475 B
JavaScript
/**
* BACnet property implementations module
*
* This module provides the core property implementations for BACnet objects.
* Properties are the data elements that make up BACnet objects, and this module
* defines the base types and interfaces for them.
*
* @module
*/
export { BDPropertyType, BDAbstractProperty, } from './abstract.js';
export { BDSingletProperty } from './singlet.js';
export { BDArrayProperty } from './array.js';
//# sourceMappingURL=index.js.map