@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
30 lines (25 loc) • 442 B
TypeScript
/**
* A property within a {@link PropertySet}.
*/
export declare class Property {
/**
* The name of this property.
*/
name: string;
/**
* The type of this property.
*/
type: number | string;
/**
* The value of this property.
*/
value: any;
/**
* The type of this property's value.
*/
valueType: number | string;
/**
* Informative text to explain the property.
*/
description: string;
}