@@ -43,23 +43,23 @@ interface FormData {
43
43
44
44
interface NodeList {
45
45
/**
46
- * Returns an array of key, value pairs for every entry in the list
47
- */
46
+ * Returns an array of key, value pairs for every entry in the list
47
+ */
48
48
entries ( ) : IterableIterator < [ number , Node ] > ;
49
49
/**
50
- * Performs the specified action for each node in an list.
51
- * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
52
- * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
53
- */
50
+ * Performs the specified action for each node in an list.
51
+ * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
52
+ * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
53
+ */
54
54
forEach ( callbackfn : ( value : Node , index : number , listObj : NodeList ) => void , thisArg ?: any ) : void ;
55
55
/**
56
- * Returns an list of keys in the list
57
- */
56
+ * Returns an list of keys in the list
57
+ */
58
58
keys ( ) : IterableIterator < number > ;
59
59
60
60
/**
61
- * Returns an list of values in the list
62
- */
61
+ * Returns an list of values in the list
62
+ */
63
63
values ( ) : IterableIterator < Node > ;
64
64
65
65
@@ -69,23 +69,23 @@ interface NodeList {
69
69
interface NodeListOf < TNode extends Node > {
70
70
71
71
/**
72
- * Returns an array of key, value pairs for every entry in the list
73
- */
72
+ * Returns an array of key, value pairs for every entry in the list
73
+ */
74
74
entries ( ) : IterableIterator < [ number , TNode ] > ;
75
75
76
76
/**
77
- * Performs the specified action for each node in an list.
78
- * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
79
- * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
80
- */
77
+ * Performs the specified action for each node in an list.
78
+ * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
79
+ * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
80
+ */
81
81
forEach ( callbackfn : ( value : TNode , index : number , listObj : NodeListOf < TNode > ) => void , thisArg ?: any ) : void ;
82
82
/**
83
- * Returns an list of keys in the list
84
- */
83
+ * Returns an list of keys in the list
84
+ */
85
85
keys ( ) : IterableIterator < number > ;
86
86
/**
87
- * Returns an list of values in the list
88
- */
87
+ * Returns an list of values in the list
88
+ */
89
89
values ( ) : IterableIterator < TNode > ;
90
90
91
91
[ Symbol . iterator ] ( ) : IterableIterator < TNode > ;
0 commit comments