mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 18:26:58 +10:00
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
|
||
|
|
}
|
||
|
|
}
|