Files
claude-code/src/ink/events/event.ts
nirholas 9acba377b8 ☸️ event.ts
2026-03-31 10:23:39 +00:00

13 lines
251 B
TypeScript

export class Event {
private _didStopImmediatePropagation = false
didStopImmediatePropagation(): boolean {
return this._didStopImmediatePropagation
}
stopImmediatePropagation(): void {
this._didStopImmediatePropagation = true
}
}