Skip to content

Commit 2d562e7

Browse files
typescript-botorta
andauthored
🤖 Update core dependencies (microsoft#1983)
Co-authored-by: orta <[email protected]>
1 parent 7b677e2 commit 2d562e7

File tree

3 files changed

+27
-11
lines changed

3 files changed

+27
-11
lines changed

baselines/dom.generated.d.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -565,6 +565,7 @@ interface EffectTiming {
565565
}
566566

567567
interface ElementCreationOptions {
568+
customElementRegistry?: CustomElementRegistry;
568569
is?: string;
569570
}
570571

@@ -826,6 +827,11 @@ interface ImageEncodeOptions {
826827
type?: string;
827828
}
828829

830+
interface ImportNodeOptions {
831+
customElementRegistry?: CustomElementRegistry;
832+
selfOnly?: boolean;
833+
}
834+
829835
interface InputEventInit extends UIEventInit {
830836
data?: string | null;
831837
dataTransfer?: DataTransfer | null;
@@ -2070,6 +2076,7 @@ interface SecurityPolicyViolationEventInit extends EventInit {
20702076

20712077
interface ShadowRootInit {
20722078
clonable?: boolean;
2079+
customElementRegistry?: CustomElementRegistry;
20732080
delegatesFocus?: boolean;
20742081
mode: ShadowRootMode;
20752082
serializable?: boolean;
@@ -8346,7 +8353,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
83468353
*
83478354
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
83488355
*/
8349-
importNode<T extends Node>(node: T, subtree?: boolean): T;
8356+
importNode<T extends Node>(node: T, options?: boolean | ImportNodeOptions): T;
83508357
/**
83518358
* Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.
83528359
* @param url Specifies a MIME type for the document.
@@ -12560,6 +12567,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
1256012567
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/hreflang)
1256112568
*/
1256212569
hreflang: string;
12570+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSizes) */
1256312571
imageSizes: string;
1256412572
imageSrcset: string;
1256512573
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */

baselines/ts5.5/dom.generated.d.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -565,6 +565,7 @@ interface EffectTiming {
565565
}
566566

567567
interface ElementCreationOptions {
568+
customElementRegistry?: CustomElementRegistry;
568569
is?: string;
569570
}
570571

@@ -826,6 +827,11 @@ interface ImageEncodeOptions {
826827
type?: string;
827828
}
828829

830+
interface ImportNodeOptions {
831+
customElementRegistry?: CustomElementRegistry;
832+
selfOnly?: boolean;
833+
}
834+
829835
interface InputEventInit extends UIEventInit {
830836
data?: string | null;
831837
dataTransfer?: DataTransfer | null;
@@ -2070,6 +2076,7 @@ interface SecurityPolicyViolationEventInit extends EventInit {
20702076

20712077
interface ShadowRootInit {
20722078
clonable?: boolean;
2079+
customElementRegistry?: CustomElementRegistry;
20732080
delegatesFocus?: boolean;
20742081
mode: ShadowRootMode;
20752082
serializable?: boolean;
@@ -8339,7 +8346,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
83398346
*
83408347
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
83418348
*/
8342-
importNode<T extends Node>(node: T, subtree?: boolean): T;
8349+
importNode<T extends Node>(node: T, options?: boolean | ImportNodeOptions): T;
83438350
/**
83448351
* Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.
83458352
* @param url Specifies a MIME type for the document.
@@ -12545,6 +12552,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
1254512552
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/hreflang)
1254612553
*/
1254712554
hreflang: string;
12555+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSizes) */
1254812556
imageSizes: string;
1254912557
imageSrcset: string;
1255012558
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */

package-lock.json

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)