public removeEventListener (type: string, listener: (event: Event) => void) {
    this.eventEmitter.off(type, listener);
  }