/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { EventEmitter } from 'node:events'; export enum AppEvent { OpenDebugConsole = 'open-debug-console', Flicker = 'flicker', SelectionWarning = 'selection-warning', PasteTimeout = 'paste-timeout', } export interface AppEvents { [AppEvent.OpenDebugConsole]: never[]; [AppEvent.Flicker]: never[]; [AppEvent.SelectionWarning]: never[]; [AppEvent.PasteTimeout]: never[]; } export const appEvents = new EventEmitter();