import { IfcPresentationLayerAssignment } from './../PresentationOrganizationResource/IfcPresentationLayerAssignment'; import { IfcRepresentationItem } from '../GeometryResource/IfcRepresentationItem'; import { IfcRepresentationContext } from './IfcRepresentationContext'; import { IIfcProductRepresentation } from './IfcProductRepresentation'; import { IfcRepresentationMap } from '../GeometryResource/IfcRepresentationMap'; export interface IfcRepresentation { ContextOfItems: IfcRepresentationContext; RepresentationIdentifier: string; RepresentationType: string; Items: IfcRepresentationItem; RepresentationMap: IfcRepresentationMap; LayerAssignments: IfcPresentationLayerAssignment; OfProductRepresentation: IIfcProductRepresentation; }