An event system with multiple emitter patterns.
npm install @boost/eventA strict event system with multiple emitter patterns.
``ts
import { Event } from '@boost/event';
const event = new Event<[string, number]>('name');
event.listen(listener);
event.emit(['abc', 123]);
`
- Isolated event instances for proper type-safety.
- Supports 4 event types: standard, bail, concurrent, and waterfall.
- Listener scopes for targeted emits.
```
yarn add @boost/event
- https://boostlib.dev/docs/event
- https://boostlib.dev/api/event