Skip to content

Commit 6850f02

Browse files
TypeScript Botsaschanaz
andauthored
🤖 Update core dependencies (#1582)
Co-authored-by: saschanaz <[email protected]>
1 parent de802e9 commit 6850f02

File tree

2 files changed

+51
-43
lines changed

2 files changed

+51
-43
lines changed

baselines/dom.generated.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4122,8 +4122,11 @@ interface CSSStyleDeclaration {
41224122
fontStyle: string;
41234123
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis) */
41244124
fontSynthesis: string;
4125+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-small-caps) */
41254126
fontSynthesisSmallCaps: string;
4127+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-style) */
41264128
fontSynthesisStyle: string;
4129+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-weight) */
41274130
fontSynthesisWeight: string;
41284131
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant) */
41294132
fontVariant: string;
@@ -8885,6 +8888,7 @@ interface GlobalEventHandlersEventMap {
88858888
"reset": Event;
88868889
"resize": UIEvent;
88878890
"scroll": Event;
8891+
"scrollend": Event;
88888892
"securitypolicyviolation": SecurityPolicyViolationEvent;
88898893
"seeked": Event;
88908894
"seeking": Event;
@@ -9235,6 +9239,8 @@ interface GlobalEventHandlers {
92359239
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scroll_event)
92369240
*/
92379241
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9242+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollend_event) */
9243+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
92389244
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/securitypolicyviolation_event) */
92399245
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
92409246
/**
@@ -27730,6 +27736,8 @@ declare var onresize: ((this: Window, ev: UIEvent) => any) | null;
2773027736
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scroll_event)
2773127737
*/
2773227738
declare var onscroll: ((this: Window, ev: Event) => any) | null;
27739+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollend_event) */
27740+
declare var onscrollend: ((this: Window, ev: Event) => any) | null;
2773327741
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/securitypolicyviolation_event) */
2773427742
declare var onsecuritypolicyviolation: ((this: Window, ev: SecurityPolicyViolationEvent) => any) | null;
2773527743
/**

package-lock.json

Lines changed: 43 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)