mirror of
https://gitverse.ru/anarchic/claude-code
synced 2026-07-29 01:52:51 +00: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
|
|
}
|
|
}
|