UNPKG

badman-core

Version:

badman-core is the layer what all the badman packages depended,or can be used as a tool kit.

11 lines (10 loc) 269 B
/** * 事件驱动根接口 */ export default abstract class EventObject<SourceType> { readonly source: SourceType; readonly timestamp: number; protected constructor(source: SourceType); get getSource(): SourceType; get getTimestamp(): number; }