πŸ“„ 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
  }
}