12 lines
250 B
TypeScript
12 lines
250 B
TypeScript
export class Event {
|
|
private _didStopImmediatePropagation = false
|
|
|
|
didStopImmediatePropagation(): boolean {
|
|
return this._didStopImmediatePropagation
|
|
}
|
|
|
|
stopImmediatePropagation(): void {
|
|
this._didStopImmediatePropagation = true
|
|
}
|
|
}
|