You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/NodeList/length)
2475
2475
*/
2476
2476
length: int,
2477
2477
}
2478
2478
2479
-
andnodeListOf<'tNode> = {
2480
-
// Base properties from NodeList
2481
-
/**
2482
-
Returns the number of nodes in the collection.
2483
-
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/NodeList/length)
2484
-
*/
2485
-
length: int,
2486
-
// End base properties from NodeList
2487
-
}
2488
-
2489
2479
/**
2490
2480
Element is the most general base class from which all objects in a Document inherit. It only has methods and properties common to all kinds of elements. More specific classes inherit from Element.
2491
2481
[See Element on MDN](https://developer.mozilla.org/docs/Web/API/Element)
@@ -2531,7 +2521,7 @@ Element is the most general base class from which all objects in a Document inhe
2531
2521
Returns the children.
2532
2522
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
2533
2523
*/
2534
-
childNodes: nodeListOf<node>,
2524
+
childNodes: nodeList<node>,
2535
2525
/**
2536
2526
Returns the first child.
2537
2527
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -2905,7 +2895,7 @@ Element is the most general base class from which all objects in a Document inhe
2905
2895
Returns the children.
2906
2896
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
2907
2897
*/
2908
-
childNodes: nodeListOf<node>,
2898
+
childNodes: nodeList<node>,
2909
2899
/**
2910
2900
Returns the first child.
2911
2901
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -3168,7 +3158,7 @@ Any HTML element. Some elements directly implement this interface, while others
3168
3158
Returns the children.
3169
3159
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
3170
3160
*/
3171
-
childNodes: nodeListOf<node>,
3161
+
childNodes: nodeList<node>,
3172
3162
/**
3173
3163
Returns the first child.
3174
3164
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -3541,7 +3531,7 @@ Contains the descriptive information, or metadata, for a document. This object i
3541
3531
Returns the children.
3542
3532
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
3543
3533
*/
3544
-
childNodes: nodeListOf<node>,
3534
+
childNodes: nodeList<node>,
3545
3535
/**
3546
3536
Returns the first child.
3547
3537
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -3797,7 +3787,7 @@ A <form> element in the DOM; it allows access to and in some cases modification
3797
3787
Returns the children.
3798
3788
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
3799
3789
*/
3800
-
childNodes: nodeListOf<node>,
3790
+
childNodes: nodeList<node>,
3801
3791
/**
3802
3792
Returns the first child.
3803
3793
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -4104,7 +4094,7 @@ Provides special properties and methods for manipulating <img> elements.
4104
4094
Returns the children.
4105
4095
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
4106
4096
*/
4107
-
childNodes: nodeListOf<node>,
4097
+
childNodes: nodeList<node>,
4108
4098
/**
4109
4099
Returns the first child.
4110
4100
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -4447,7 +4437,7 @@ Provides special properties (beyond the regular HTMLElement interface it also ha
4447
4437
Returns the children.
4448
4438
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
4449
4439
*/
4450
-
childNodes: nodeListOf<node>,
4440
+
childNodes: nodeList<node>,
4451
4441
/**
4452
4442
Returns the first child.
4453
4443
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -4719,7 +4709,7 @@ Hyperlink elements and provides special properties and methods (beyond those of
4719
4709
Returns the children.
4720
4710
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
4721
4711
*/
4722
-
childNodes: nodeListOf<node>,
4712
+
childNodes: nodeList<node>,
4723
4713
/**
4724
4714
Returns the first child.
4725
4715
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -5092,7 +5082,7 @@ Provides special properties and methods (beyond those of the regular object HTML
5092
5082
Returns the children.
5093
5083
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
5094
5084
*/
5095
-
childNodes: nodeListOf<node>,
5085
+
childNodes: nodeList<node>,
5096
5086
/**
5097
5087
Returns the first child.
5098
5088
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -5445,7 +5435,7 @@ HTML <script> elements expose the HTMLScriptElement interface, which provides sp
5445
5435
Returns the children.
5446
5436
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
5447
5437
*/
5448
-
childNodes: nodeListOf<node>,
5438
+
childNodes: nodeList<node>,
5449
5439
/**
5450
5440
Returns the first child.
5451
5441
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -5574,7 +5564,7 @@ and documentType = {
5574
5564
Returns the children.
5575
5565
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
5576
5566
*/
5577
-
childNodes: nodeListOf<node>,
5567
+
childNodes: nodeList<node>,
5578
5568
/**
5579
5569
Returns the first child.
5580
5570
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -5664,7 +5654,7 @@ Any web page loaded in the browser and serves as an entry point into the web pag
5664
5654
Returns the children.
5665
5655
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
5666
5656
*/
5667
-
childNodes: nodeListOf<node>,
5657
+
childNodes: nodeList<node>,
5668
5658
/**
5669
5659
Returns the first child.
5670
5660
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -6132,12 +6122,12 @@ and mutationRecord = {
6132
6122
Return the nodes added and removed respectively.
6133
6123
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/MutationRecord/addedNodes)
6134
6124
*/
6135
-
addedNodes: nodeList,
6125
+
addedNodes: nodeList<node>,
6136
6126
/**
6137
6127
Return the nodes added and removed respectively.
6138
6128
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/MutationRecord/removedNodes)
6139
6129
*/
6140
-
removedNodes: nodeList,
6130
+
removedNodes: nodeList<node>,
6141
6131
/**
6142
6132
Return the previous and next sibling respectively of the added or removed nodes, and null otherwise.
6143
6133
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/MutationRecord/previousSibling)
@@ -6210,7 +6200,7 @@ and attr = {
6210
6200
Returns the children.
6211
6201
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
6212
6202
*/
6213
-
childNodes: nodeListOf<node>,
6203
+
childNodes: nodeList<node>,
6214
6204
/**
6215
6205
Returns the first child.
6216
6206
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -6312,7 +6302,7 @@ The CharacterData abstract interface represents a Node object that contains char
6312
6302
Returns the children.
6313
6303
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
6314
6304
*/
6315
-
childNodes: nodeListOf<node>,
6305
+
childNodes: nodeList<node>,
6316
6306
/**
6317
6307
Returns the first child.
6318
6308
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -6408,7 +6398,7 @@ A minimal document object that has no parent. It is used as a lightweight versio
6408
6398
Returns the children.
6409
6399
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
6410
6400
*/
6411
-
childNodes: nodeListOf<node>,
6401
+
childNodes: nodeList<node>,
6412
6402
/**
6413
6403
Returns the first child.
6414
6404
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -6683,7 +6673,7 @@ A minimal document object that has no parent. It is used as a lightweight versio
6683
6673
Returns the children.
6684
6674
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
6685
6675
*/
6686
-
childNodes: nodeListOf<node>,
6676
+
childNodes: nodeList<node>,
6687
6677
/**
6688
6678
Returns the first child.
6689
6679
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Node/firstChild)
@@ -6859,7 +6849,7 @@ type elementInternals = {
6859
6849
Returns a NodeList of all the label elements that internals's target element is associated with.
6860
6850
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/ElementInternals/labels)
6861
6851
*/
6862
-
labels: nodeList,
6852
+
labels: nodeList<any>,
6863
6853
/**
6864
6854
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/ElementInternals/states)
6865
6855
*/
@@ -7528,7 +7518,7 @@ type rec htmlButtonElement = {
7528
7518
/**
7529
7519
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/labels)
7530
7520
*/
7531
-
labels: nodeListOf<htmlLabelElement>,
7521
+
labels: nodeList<htmlLabelElement>,
7532
7522
/**
7533
7523
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/popoverTargetElement)
7534
7524
*/
@@ -7663,7 +7653,7 @@ Provides special properties and methods for manipulating the layout and presenta
7663
7653
/**
7664
7654
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/labels)
7665
7655
*/
7666
-
labels: nodeListOf<htmlLabelElement>,
7656
+
labels: nodeList<htmlLabelElement>,
7667
7657
/**
7668
7658
Gets or sets the starting position or offset of a text selection.
7669
7659
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionStart)
@@ -7730,7 +7720,7 @@ Can be set, to change the value.
7730
7720
/**
7731
7721
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/labels)
7732
7722
*/
7733
-
labels: nodeListOf<htmlLabelElement>,
7723
+
labels: nodeList<htmlLabelElement>,
7734
7724
}
7735
7725
7736
7726
/**
@@ -7919,7 +7909,7 @@ Provides special properties and methods for manipulating the options, layout, an
7919
7909
/**
7920
7910
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/labels)
7921
7911
*/
7922
-
labels: Null.t<nodeListOf<htmlLabelElement>>,
7912
+
labels: Null.t<nodeList<htmlLabelElement>>,
7923
7913
/**
7924
7914
Gets or sets the starting position or offset of a text selection.
7925
7915
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionStart)
@@ -8052,7 +8042,7 @@ A <select> HTML Element. These elements also share all of the properties and met
8052
8042
/**
8053
8043
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/labels)
8054
8044
*/
8055
-
labels: nodeListOf<htmlLabelElement>,
8045
+
labels: nodeList<htmlLabelElement>,
8056
8046
}
8057
8047
8058
8048
/**
@@ -8699,7 +8689,7 @@ type htmlMeterElement = {
8699
8689
/**
8700
8690
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/labels)
8701
8691
*/
8702
-
labels: nodeListOf<htmlLabelElement>,
8692
+
labels: nodeList<htmlLabelElement>,
8703
8693
}
8704
8694
8705
8695
/**
@@ -8868,7 +8858,7 @@ type htmlProgressElement = {
8868
8858
/**
8869
8859
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/HTMLProgressElement/labels)
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.
0 commit comments