import { CurveObject } from "./curve_object.js"; /** Represents an IFC 3D profile object */ export interface IfcProfile3D { type: string; curve: CurveObject; isConvex: boolean; } //# sourceMappingURL=ifc_profile_3D.d.ts.map