@xeokit/xeokit-sdk
Version:
3D BIM IFC Viewer SDK for AEC engineering applications. Open Source JavaScript Toolkit based on pure WebGL for top performance, real-world coordinates and full double precision
32 lines (26 loc) • 560 B
TypeScript
import { Property } from "./Property";
/**
* A set of properties associated with one or more {@link MetaObject}s.
*/
export declare class PropertySet {
/**
* Globally-unique ID for this PropertySet.
*/
id: string;
/**
* ID of the corresponding object within the originating system, if any.
*/
originalSystemId: string;
/**
* Human-readable name of this PropertySet.
*/
name: string;
/**
* Type of this PropertySet.
*/
type: string;
/**
* Properties within this PropertySet.
*/
properties: Property[];
}