UNPKG

@flowlab/all

Version:

A cool library focusing on handling various flows

7 lines (5 loc) 184 B
// src/api/emitEvent.ts import { EventBus } from '../bus/EventBus'; export async function emitEvent(event: string, payload: any, bus: EventBus ) { await bus.emit(event, payload); }