Run stimulus method on elements with registered actions/listeners

This is what I came up with. I was wondering if Stimulus provided a reference to the elements that have listeners registered that will call this controller.

export default class extends Controller {
  connect () {
    this.element.querySelectorAll('[data-action="change->disabler#toggle"]').forEach((element) => {
      this.toggleByElement(element)
    })
  }
...