Skip to content

Commit ffd355c

Browse files
committed
1 parent 29f9d17 commit ffd355c

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
@@ -8656,7 +8656,7 @@ interface DOMImplementation {
86568656
*
86578657
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)
86588658
*/
8659-
createDocumentType(qualifiedName: string, publicId: string, systemId: string): DocumentType;
8659+
createDocumentType(name: string, publicId: string, systemId: string): DocumentType;
86608660
/**
86618661
* The **`DOMImplementation.createHTMLDocument()`** method creates a new HTML Document.
86628662
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8649,7 +8649,7 @@ interface DOMImplementation {
86498649
*
86508650
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)
86518651
*/
8652-
createDocumentType(qualifiedName: string, publicId: string, systemId: string): DocumentType;
8652+
createDocumentType(name: string, publicId: string, systemId: string): DocumentType;
86538653
/**
86548654
* The **`DOMImplementation.createHTMLDocument()`** method creates a new HTML Document.
86558655
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8656,7 +8656,7 @@ interface DOMImplementation {
86568656
*
86578657
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)
86588658
*/
8659-
createDocumentType(qualifiedName: string, publicId: string, systemId: string): DocumentType;
8659+
createDocumentType(name: string, publicId: string, systemId: string): DocumentType;
86608660
/**
86618661
* The **`DOMImplementation.createHTMLDocument()`** method creates a new HTML Document.
86628662
*

0 commit comments

Comments
 (0)