UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

7 lines (6 loc) 387 B
import { IfcDateTimeValue } from "./IfcDateTimeValue.js"; import { IfcDateValue } from "./IfcDateValue.js"; import { IfcTimeValue } from "./IfcTimeValue.js"; import { IfcDurationValue } from "./IfcDurationValue.js"; import { IfcTimeStampValue } from "./IfcTimeStampValue.js"; export type ValueType = IfcDateValue | IfcDateTimeValue | IfcTimeValue | IfcDurationValue | IfcTimeStampValue;