We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents db6bcf5 + 6588f2b commit fb07b70Copy full SHA for fb07b70
baselines/dom.generated.d.ts
@@ -11587,7 +11587,7 @@ interface Text extends CharacterData {
11587
11588
declare var Text: {
11589
prototype: Text;
11590
- new(): Text;
+ new(data?: string): Text;
11591
}
11592
11593
interface TextEvent extends UIEvent {
inputfiles/overridingTypes.json
@@ -1066,5 +1066,12 @@
1066
"signatures": [
1067
"new(type: string, touchEventInit?: TouchEventInit): TouchEvent"
1068
]
1069
+ },
1070
+ {
1071
+ "kind": "constructor",
1072
+ "interface": "Text",
1073
+ "signatures": [
1074
+ "new(data?: string): Text"
1075
+ ]
1076
1077
0 commit comments