mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-01 06:42:26 +00:00
11 lines
160 B
TypeScript
11 lines
160 B
TypeScript
import { EventEmitter } from "events"
|
|
|
|
export const GlobalBus = new EventEmitter<{
|
|
event: [
|
|
{
|
|
directory?: string
|
|
payload: any
|
|
},
|
|
]
|
|
}>()
|