ixevent
v1.0.5
Published
Simple event emitter
Downloads
6
Readme
simple event emitter
import ixevent from "ixevent";
const event = ixevent<{ hello: string }>();
const unlisten = event.listen((value) => {
console.log(value);
});
event.send({ hello: "ixevent" });
// { hello: "ixevent" }
unlisten();
MIT