UNPKG

@glowjs/core

Version:

GlowJS数字孪生引擎核心库。

20 lines (19 loc) 382 B
/** * 资产数据 */ export type AssetData = { /** 模型ID */ model_id: string; /** U高 */ uheight: number; /** 资产唯一ID */ asset_id: string; /** 资产名称 */ asset_name: string; /** 起始U位 */ start_u: number; /** 方向 */ direction: boolean; /** 机柜唯一ID */ cabinet_id: string; };