Browse Source
types: fix `scroll` event type; add support for `scrollend` (#10443)
pull/10481/head
chirokas
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
2 deletions
-
packages/runtime-dom/src/jsx.ts
|
|
@ -1348,8 +1348,9 @@ export interface Events { |
|
|
|
// selection events
|
|
|
|
onSelect: Event |
|
|
|
|
|
|
|
// UI events
|
|
|
|
onScroll: UIEvent |
|
|
|
// scroll events
|
|
|
|
onScroll: Event |
|
|
|
onScrollend: Event |
|
|
|
|
|
|
|
// touch events
|
|
|
|
onTouchcancel: TouchEvent |
|
|
|