mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-15 07:21:07 +00:00
18 lines
383 B
JavaScript
Executable File
18 lines
383 B
JavaScript
Executable File
/* eslint-disable */
|
|
import { noop } from './util/index.js'
|
|
|
|
export default class Event {
|
|
constructor(type) {
|
|
|
|
this.cancelBubble = false
|
|
this.cancelable = false
|
|
this.target = null
|
|
this.currentTarget = null
|
|
this.preventDefault = noop
|
|
this.stopPropagation = noop
|
|
|
|
this.type = type
|
|
this.timeStamp = Date.now()
|
|
}
|
|
}
|