import { IIfcPropertySet } from '../ifcSchema/ifc2x3/Kernel/IfcPropertySet'; export interface ItemReaderValue { expressId: string; type: string; properties: string; } export interface IFCHeaderValue { fileDescription: string; fileName: string; fileSchema: string; } export interface Point { X: number; Y: number; Z: number; } export interface IPropByObject { [key: string]: IIfcPropertySet[]; }