UNPKG

@bacnet-js/device

Version:

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

14 lines 568 B
import {} from '@bacnet-js/client'; import { AsyncEventEmitter, } from '../events.js'; import {} from './abstract.js'; /** * Enumerates the types of properties that can be defined. */ export var BDPropertyType; (function (BDPropertyType) { /** A property whose data consists of a single value. */ BDPropertyType[BDPropertyType["SINGLET"] = 0] = "SINGLET"; /** A property whose data consists of an array of values. */ BDPropertyType[BDPropertyType["ARRAY"] = 1] = "ARRAY"; })(BDPropertyType || (BDPropertyType = {})); //# sourceMappingURL=types.js.map