Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 306 Bytes

File metadata and controls

21 lines (13 loc) · 306 Bytes

@gamestdio/signals

Light-weight, strongly-typed messaging system.

Usage

import { Signal } from "@gamestdio/signals";

let signal = new Signal();

signal.add((data) => {
    console.log(data.message);
});

signal.dispatch({ message: "hello signal!" });

License

MIT