mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-21 01:07:46 +00:00
16 lines
323 B
TypeScript
16 lines
323 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { EventEmitter } from 'node:events';
|
|
|
|
export enum AppEvent {
|
|
OpenDebugConsole = 'open-debug-console',
|
|
LogError = 'log-error',
|
|
OauthDisplayMessage = 'oauth-display-message',
|
|
}
|
|
|
|
export const appEvents = new EventEmitter();
|