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