UNPKG

@glowjs/core

Version:

GlowJS数字孪生引擎核心库。

15 lines (14 loc) 299 B
import { Img } from "./Img"; import { Line } from "./Line"; import { Txt } from "./Txt"; /** 容器 */ export declare class Container { /** 图片 */ img: Img; /** 线 */ line: Line; /** 文本列表 */ txts: Txt[]; /** 构造函数 */ constructor(); }