UNPKG

bacnet-device

Version:

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

14 lines 579 B
import { BDSingletProperty } from '../properties/index.js'; import { BDObject } from './generic/object.js'; import { ApplicationTag } from '@innovation-system/node-bacnet'; export interface BDCharacterStringValueOpts { name: string; writable?: boolean; description?: string; presentValue?: string; } export declare class BDCharacterStringValue extends BDObject { readonly presentValue: BDSingletProperty<ApplicationTag.CHARACTER_STRING>; constructor(instance: number, opts: BDCharacterStringValueOpts); } //# sourceMappingURL=characterstringvalue.d.ts.map