mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-25 03:10:08 +08:00
9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
import Emittery from 'emittery'
|
|
|
|
export const EventEmitter = new Emittery()
|
|
|
|
export const EVENT_NAMES = {
|
|
SEND_MESSAGE: 'SEND_MESSAGE',
|
|
AI_CHAT_COMPLETION: 'AI_CHAT_COMPLETION'
|
|
}
|