import { IIfcObjectPlacement } from '../GeometricConstraintResource/IfcObjectPlacement'; import { IIfcObject } from './IfcObject'; import { IIfcRoot } from './IfcRoot'; import { IIfcProductRepresentation } from '../RepresentationResource/IfcProductRepresentation'; export interface IIfcProduct extends IIfcRoot, IIfcObject { ObjectPlacement?: IIfcObjectPlacement; Representation?: IIfcProductRepresentation; }