(payload)
| 364 | } |
| 365 | |
| 366 | export function pointerup(payload) { |
| 367 | return createPointerEvent('pointerup', { |
| 368 | button: buttonType.primary, |
| 369 | ...payload, |
| 370 | buttons: buttonsType.none, |
| 371 | pressure: 0, |
| 372 | }); |
| 373 | } |
| 374 | |
| 375 | /** |
| 376 | * Mouse events |
nothing calls this directly
no test coverage detected