global.ts 159 B

12345678910
  1. import { EventEmitter } from "events"
  2. export const GlobalBus = new EventEmitter<{
  3. event: [
  4. {
  5. directory: string
  6. payload: any
  7. },
  8. ]
  9. }>()