UNPKG

@glowjs/core

Version:

GlowJS数字孪生引擎核心库。

14 lines (13 loc) 256 B
/** * 动态模型图片(字符串表示图片base64编码,对象表示文件信息) */ export type ResImageSource = string | { /** * 图片资源ID */ id: string; /** * 扩展名 */ ext: string; };