bacnet-device
Version:
A TypeScript library for implementing BACnet IP devices in Node.js.
8 lines • 341 B
JavaScript
/**
* Maximum value of the `index` parameter of `readProperty` requests.
* Used to indicate that a client is interested in the entire list of values
* as opposed to either the length (`index = 0`) or a specific item
* (`1 <= index <= MAX_ARRAY_INDEX`).
*/
export const MAX_ARRAY_INDEX = 4294967295;
//# sourceMappingURL=constants.js.map