Does typed-emitter have support for the "once" function of the "events" inbuilt package?
nodejs/node#26078
Used like this:
import { once } from "events"
// ...
await once(emitter, "event"); 
This is not typed, and its not even a function on the EventEmitter - is there a clean way to type this without reimplementing the promise-based once function?
Thanks for your work on this package!