UNPKG
@flowlab/all
Version:
latest (0.0.2)
0.0.2
0.0.1
A cool library focusing on handling various flows
github.com/countstarss/flowlab
countstarss/flowlab
@flowlab/all
/
packages
/
event
/
src
/
api
/
emitEvents.ts
7 lines
(5 loc)
•
184 B
text/typescript
View Raw
1
2
3
4
5
6
7
// src/api/emitEvent.ts
import
{
EventBus
}
from
'../bus/EventBus'
;
export
async
function
emitEvent
(
event
:
string
,
payload
:
any
,
bus
:
EventBus
) {
await
bus.
emit
(event, payload); }