public on (type: string, listener: (event: Event) => void) {
    this.addEventListener(type, listener);
    return this;
  }