A web-ifc tape value handle — { type: 1, value: 'str' } for strings. Consumers (e.g. @bldrs-ai/ifclib's deref) switch on the tape type code, so bare { value } objects are not interchangeable with these.

interface NodeValueHandle {
    type: number;
    value: string | number;
}

Properties

Properties

type: number
value: string | number