* Dispatch an event on the element
(event: keyof HTMLElementEventMap, eventInitDict?: EventInit)
| 575 | * Dispatch an event on the element |
| 576 | */ |
| 577 | dispatch(event: keyof HTMLElementEventMap, eventInitDict?: EventInit): this { |
| 578 | this.native.dispatchEvent(new Event(event, eventInitDict)); |
| 579 | return this; |
| 580 | } |
| 581 | |
| 582 | /** |
| 583 | * Get the element's screen bounds: top, left, width and height |
no outgoing calls
no test coverage detected