| 136 | } |
| 137 | |
| 138 | export class DragEvent extends MouseEvent { |
| 139 | constructor(type, init) { |
| 140 | super(type, {...init, bubbles: true, cancelable: true, composed: true}); |
| 141 | this.dataTransfer = init.dataTransfer; |
nothing calls this directly
no outgoing calls
no test coverage detected