@bacnet-js/client
    Preparing search index...

    Interface BACNetAppData<Tag, Type>

    TODO: when the time comes, drop the default value for the Tag generic parameter to enforce type safety everywhere throughout the library.

    interface BACNetAppData<
        Tag extends ApplicationTag = ApplicationTag,
        Type extends
            ApplicationTagValueTypeMap[Tag] = ApplicationTagValueTypeMap[Tag],
    > {
        encoding?: number;
        type: Tag;
        value: Type;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    encoding?: number
    type: Tag
    value: Type