UNPKG

@glowjs/core

Version:

GlowJS数字孪生引擎核心库。

15 lines (14 loc) 223 B
import { EventDispatcher } from './EventDispatcher'; /** * 事件参数 */ export type EventArg = { /** * 目标 */ target: EventDispatcher; /** * 数据 */ data: any; };