summaryrefslogtreecommitdiff
path: root/packages/cli/src/utils/events.ts
blob: 3936438794127a8895a123a1fb69c0b40727fb67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * @license
 * Copyright 2025 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */

import { EventEmitter } from 'events';

export enum AppEvent {
  OpenDebugConsole = 'open-debug-console',
  LogError = 'log-error',
}

export const appEvents = new EventEmitter();