File tree 2 files changed +58
-0
lines changed 2 files changed +58
-0
lines changed Original file line number Diff line number Diff line change @@ -14232,6 +14232,36 @@ interface HTMLDialogElement extends HTMLElement {
14232
14232
showModal(): void;
14233
14233
}
14234
14234
14235
+ declare var HTMLDialogElement: {
14236
+ prototype: HTMLDialogElement;
14237
+ new(): HTMLDialogElement;
14238
+ };
14239
+
14240
+ interface HTMLMainElement extends HTMLElement {
14241
+ }
14242
+
14243
+ declare var HTMLMainElement: {
14244
+ prototype: HTMLMainElement;
14245
+ new(): HTMLMainElement;
14246
+ };
14247
+
14248
+ interface HTMLDetailsElement extends HTMLElement {
14249
+ open: boolean;
14250
+ }
14251
+
14252
+ declare var HTMLDetailsElement: {
14253
+ prototype: HTMLDetailsElement;
14254
+ new(): HTMLDetailsElement;
14255
+ };
14256
+
14257
+ interface HTMLSummaryElement extends HTMLElement {
14258
+ }
14259
+
14260
+ declare var HTMLSummaryElement: {
14261
+ prototype: HTMLSummaryElement;
14262
+ new(): HTMLSummaryElement;
14263
+ };
14264
+
14235
14265
declare type EventListenerOrEventListenerObject = EventListener | EventListenerObject;
14236
14266
14237
14267
interface DecodeErrorCallback {
Original file line number Diff line number Diff line change 1703
1703
{
1704
1704
"kind" : " interface" ,
1705
1705
"name" : " HTMLDialogElement" ,
1706
+ "constructorSignatures" : [" new(): HTMLDialogElement" ],
1706
1707
"extends" : " HTMLElement" ,
1707
1708
"flavor" : " DOM" ,
1708
1709
"properties" : [
1736
1737
"name" : " redirected" ,
1737
1738
"readonly" : true ,
1738
1739
"type" : " boolean"
1740
+ },
1741
+ {
1742
+ "kind" : " interface" ,
1743
+ "name" : " HTMLMainElement" ,
1744
+ "constructorSignatures" : [" new(): HTMLMainElement" ],
1745
+ "extends" : " HTMLElement" ,
1746
+ "flavor" : " DOM"
1747
+ },
1748
+ {
1749
+ "kind" : " interface" ,
1750
+ "name" : " HTMLDetailsElement" ,
1751
+ "constructorSignatures" : [" new(): HTMLDetailsElement" ],
1752
+ "extends" : " HTMLElement" ,
1753
+ "flavor" : " DOM" ,
1754
+ "properties" : [
1755
+ {
1756
+ "name" : " open" ,
1757
+ "type" : " boolean"
1758
+ }
1759
+ ]
1760
+ },
1761
+ {
1762
+ "kind" : " interface" ,
1763
+ "name" : " HTMLSummaryElement" ,
1764
+ "constructorSignatures" : [" new(): HTMLSummaryElement" ],
1765
+ "extends" : " HTMLElement" ,
1766
+ "flavor" : " DOM"
1739
1767
}
1740
1768
]
You can’t perform that action at this time.
0 commit comments