Skip to content

Commit 1efc911

Browse files
committed
accept new baselines
1 parent 9031d1d commit 1efc911

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

baselines/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10577,7 +10577,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1057710577
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/exitPointerLock)
1057810578
*/
1057910579
exitPointerLock(): void;
10580-
getElementById(elementId: string): HTMLElement | null;
10580+
getElementById<T = HTMLElement>(elementId: string): T | null;
1058110581
/**
1058210582
* The **`getElementsByClassName`** method of Document interface returns an array-like object of all child elements which have all of the given class name(s).
1058310583
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10569,7 +10569,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1056910569
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/exitPointerLock)
1057010570
*/
1057110571
exitPointerLock(): void;
10572-
getElementById(elementId: string): HTMLElement | null;
10572+
getElementById<T = HTMLElement>(elementId: string): T | null;
1057310573
/**
1057410574
* The **`getElementsByClassName`** method of Document interface returns an array-like object of all child elements which have all of the given class name(s).
1057510575
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10577,7 +10577,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1057710577
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/exitPointerLock)
1057810578
*/
1057910579
exitPointerLock(): void;
10580-
getElementById(elementId: string): HTMLElement | null;
10580+
getElementById<T = HTMLElement>(elementId: string): T | null;
1058110581
/**
1058210582
* The **`getElementsByClassName`** method of Document interface returns an array-like object of all child elements which have all of the given class name(s).
1058310583
*

0 commit comments

Comments
 (0)