Signal.js 132 B

123456789
  1. class Signal
  2. {
  3. constructor(name)
  4. {
  5. this.name = name;
  6. this.targets = [];
  7. this.callbacks = [];
  8. }
  9. }