UNPKG

@glowjs/core

Version:

GlowJS数字孪生引擎核心库。

27 lines (26 loc) 424 B
import { EventArg } from './EventArg'; /** * 事件对象 */ export type EventObject = { /** * 唯一编号 */ id: string; /** * 回调函数 */ callback: (ev: EventArg) => void; /** * 是否只触发一次 */ once: boolean; /** * 自定义数据 */ data: any; /** * 是否已暂停 */ paused: boolean; };