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

    Interface TypedValue<Tag, Type>

    TODO: when the times comes, drop the default value for the Tag paramter to enforce strong typing throughout the entire library.

    interface TypedValue<
        Tag extends ApplicationTag = ApplicationTag,
        Type extends
            ApplicationTagValueTypeMap[Tag] = ApplicationTagValueTypeMap[Tag],
    > {
        type: Tag;
        value: Type;
    }

    Type Parameters

    Index

    Properties

    Properties

    type: Tag
    value: Type