Skip to content

Commit c8948ae

Browse files
TypeScript Botsaschanaz
TypeScript Bot
andauthored
🤖 Update core dependencies (#1530)
Co-authored-by: saschanaz <[email protected]>
1 parent cb84ebc commit c8948ae

File tree

2 files changed

+157
-147
lines changed

2 files changed

+157
-147
lines changed

baselines/dom.generated.d.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3779,6 +3779,8 @@ interface CSSStyleDeclaration {
37793779
all: string;
37803780
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation) */
37813781
animation: string;
3782+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-composition) */
3783+
animationComposition: string;
37823784
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-delay) */
37833785
animationDelay: string;
37843786
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-direction) */
@@ -6923,7 +6925,11 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
69236925
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/referrer)
69246926
*/
69256927
readonly referrer: string;
6926-
/** @deprecated */
6928+
/**
6929+
* @deprecated
6930+
*
6931+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/rootElement)
6932+
*/
69276933
readonly rootElement: SVGSVGElement | null;
69286934
/**
69296935
* Retrieves a collection of all script objects in the document.
@@ -21157,6 +21163,7 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot, InnerHTML {
2115721163
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/mode) */
2115821164
readonly mode: ShadowRootMode;
2115921165
onslotchange: ((this: ShadowRoot, ev: Event) => any) | null;
21166+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/slotAssignment) */
2116021167
readonly slotAssignment: SlotAssignmentMode;
2116121168
/** Throws a "NotSupportedError" DOMException if context object is a shadow root. */
2116221169
addEventListener<K extends keyof ShadowRootEventMap>(type: K, listener: (this: ShadowRoot, ev: ShadowRootEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;

0 commit comments

Comments
 (0)