outputhandler.js 131 B

12345678910
  1. export class OutputHandler {
  2. constructor(cb) {
  3. this.cb = cb;
  4. }
  5. handle_output(out_event) {
  6. this.cb(out_event);
  7. }
  8. }