UNPKG

bacnet-device

Version:

A TypeScript library for implementing BACnet IP devices in Node.js.

18 lines 589 B
/** * 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 */ import {} from '@innovation-system/node-bacnet'; import {} from '../value.js'; import { BDSingletProperty } from './singlet.js'; import { BDArrayProperty } from './array.js'; /** * Export the concrete property implementations */ export { BDSingletProperty, BDArrayProperty, }; //# sourceMappingURL=index.js.map