andywer / typed-emitter

🔩 Type-safe event emitter interface for TypeScript
MIT License
268 stars 24 forks source link

Missing `off`? #1

Closed elsassph closed 4 years ago

elsassph commented 4 years ago

off is quite a useful method and it's missing in the typing.

andywer commented 4 years ago

Thanks for pointing out!

It is part of the interface, but only as removeListener. off was added as an alias in node 10.

Time to add it 👍

elsassph commented 4 years ago

Thanks!