@@ -23,23 +23,23 @@ interface FormData {
23
23
24
24
interface NodeList {
25
25
/**
26
- * Returns an array of key, value pairs for every entry in the list
27
- */
26
+ * Returns an array of key, value pairs for every entry in the list
27
+ */
28
28
entries ( ) : IterableIterator < [ number , Node ] > ;
29
29
/**
30
- * Performs the specified action for each node in an list.
31
- * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
32
- * @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.
33
- */
30
+ * Performs the specified action for each node in an list.
31
+ * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
32
+ * @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.
33
+ */
34
34
forEach ( callbackfn : ( value : Node , index : number , listObj : NodeList ) => void , thisArg ?: any ) : void ;
35
35
/**
36
- * Returns an list of keys in the list
37
- */
36
+ * Returns an list of keys in the list
37
+ */
38
38
keys ( ) : IterableIterator < number > ;
39
39
40
40
/**
41
- * Returns an list of values in the list
42
- */
41
+ * Returns an list of values in the list
42
+ */
43
43
values ( ) : IterableIterator < Node > ;
44
44
45
45
@@ -49,23 +49,23 @@ interface NodeList {
49
49
interface NodeListOf < TNode extends Node > {
50
50
51
51
/**
52
- * Returns an array of key, value pairs for every entry in the list
53
- */
52
+ * Returns an array of key, value pairs for every entry in the list
53
+ */
54
54
entries ( ) : IterableIterator < [ number , TNode ] > ;
55
55
56
56
/**
57
- * Performs the specified action for each node in an list.
58
- * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
59
- * @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.
60
- */
57
+ * Performs the specified action for each node in an list.
58
+ * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
59
+ * @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.
60
+ */
61
61
forEach ( callbackfn : ( value : TNode , index : number , listObj : NodeListOf < TNode > ) => void , thisArg ?: any ) : void ;
62
62
/**
63
- * Returns an list of keys in the list
64
- */
63
+ * Returns an list of keys in the list
64
+ */
65
65
keys ( ) : IterableIterator < number > ;
66
66
/**
67
- * Returns an list of values in the list
68
- */
67
+ * Returns an list of values in the list
68
+ */
69
69
values ( ) : IterableIterator < TNode > ;
70
70
71
71
[ Symbol . iterator ] ( ) : IterableIterator < TNode > ;
0 commit comments