π File detail
ink/events/event.ts
π§© .tsπ 12 linesπΎ 250 bytesπ text
β Back to All Filesπ― Use case
This file lives under βink/β, which covers Ink terminal UI (layouts, TTY IO, keyboard, renderer components). On the API surface it exposes Event β mainly types, interfaces, or factory objects.
Generated from folder role, exports, dependency roots, and inline comments β not hand-reviewed for every path.
π§ Inline summary
export class Event { private _didStopImmediatePropagation = false didStopImmediatePropagation(): boolean { return this._didStopImmediatePropagation
π€ Exports (heuristic)
Event
π₯οΈ Source preview
export class Event {
private _didStopImmediatePropagation = false
didStopImmediatePropagation(): boolean {
return this._didStopImmediatePropagation
}
stopImmediatePropagation(): void {
this._didStopImmediatePropagation = true
}
}