UNPKG

@bacnet-js/device

Version:

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

14 lines 566 B
import { BDSingletProperty } from '../properties/index.js'; import { BDObject } from './generic/object.js'; import { ApplicationTag } from '@bacnet-js/client'; 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