@@ -2,7 +2,7 @@ interface Array<T> {
2
2
/**
3
3
* Determines whether an array includes a certain element, returning true or false as appropriate.
4
4
* @param searchElement The element to search for.
5
- * @param fromIndex The position in this array at which to begin searching for searchElement.
5
+ * @param fromIndex The position in this array at which to begin searching for searchElement.
6
6
*/
7
7
includes ( searchElement : T , fromIndex ?: number ) : boolean ;
8
8
}
@@ -11,16 +11,16 @@ interface Int8Array {
11
11
/**
12
12
* Determines whether an array includes a certain element, returning true or false as appropriate.
13
13
* @param searchElement The element to search for.
14
- * @param fromIndex The position in this array at which to begin searching for searchElement.
14
+ * @param fromIndex The position in this array at which to begin searching for searchElement.
15
15
*/
16
- includes ( searchElement : Int8Array , fromIndex ?: number ) : boolean ;
16
+ includes ( searchElement : number , fromIndex ?: number ) : boolean ;
17
17
}
18
18
19
19
interface Uint8Array {
20
20
/**
21
21
* Determines whether an array includes a certain element, returning true or false as appropriate.
22
22
* @param searchElement The element to search for.
23
- * @param fromIndex The position in this array at which to begin searching for searchElement.
23
+ * @param fromIndex The position in this array at which to begin searching for searchElement.
24
24
*/
25
25
includes ( searchElement : number , fromIndex ?: number ) : boolean ;
26
26
}
@@ -29,7 +29,7 @@ interface Uint8ClampedArray {
29
29
/**
30
30
* Determines whether an array includes a certain element, returning true or false as appropriate.
31
31
* @param searchElement The element to search for.
32
- * @param fromIndex The position in this array at which to begin searching for searchElement.
32
+ * @param fromIndex The position in this array at which to begin searching for searchElement.
33
33
*/
34
34
includes ( searchElement : number , fromIndex ?: number ) : boolean ;
35
35
}
@@ -38,7 +38,7 @@ interface Int16Array {
38
38
/**
39
39
* Determines whether an array includes a certain element, returning true or false as appropriate.
40
40
* @param searchElement The element to search for.
41
- * @param fromIndex The position in this array at which to begin searching for searchElement.
41
+ * @param fromIndex The position in this array at which to begin searching for searchElement.
42
42
*/
43
43
includes ( searchElement : number , fromIndex ?: number ) : boolean ;
44
44
}
@@ -47,7 +47,7 @@ interface Uint16Array {
47
47
/**
48
48
* Determines whether an array includes a certain element, returning true or false as appropriate.
49
49
* @param searchElement The element to search for.
50
- * @param fromIndex The position in this array at which to begin searching for searchElement.
50
+ * @param fromIndex The position in this array at which to begin searching for searchElement.
51
51
*/
52
52
includes ( searchElement : number , fromIndex ?: number ) : boolean ;
53
53
}
@@ -56,7 +56,7 @@ interface Int32Array {
56
56
/**
57
57
* Determines whether an array includes a certain element, returning true or false as appropriate.
58
58
* @param searchElement The element to search for.
59
- * @param fromIndex The position in this array at which to begin searching for searchElement.
59
+ * @param fromIndex The position in this array at which to begin searching for searchElement.
60
60
*/
61
61
includes ( searchElement : number , fromIndex ?: number ) : boolean ;
62
62
}
@@ -65,7 +65,7 @@ interface Uint32Array {
65
65
/**
66
66
* Determines whether an array includes a certain element, returning true or false as appropriate.
67
67
* @param searchElement The element to search for.
68
- * @param fromIndex The position in this array at which to begin searching for searchElement.
68
+ * @param fromIndex The position in this array at which to begin searching for searchElement.
69
69
*/
70
70
includes ( searchElement : number , fromIndex ?: number ) : boolean ;
71
71
}
@@ -74,7 +74,7 @@ interface Float32Array {
74
74
/**
75
75
* Determines whether an array includes a certain element, returning true or false as appropriate.
76
76
* @param searchElement The element to search for.
77
- * @param fromIndex The position in this array at which to begin searching for searchElement.
77
+ * @param fromIndex The position in this array at which to begin searching for searchElement.
78
78
*/
79
79
includes ( searchElement : number , fromIndex ?: number ) : boolean ;
80
80
}
@@ -83,7 +83,7 @@ interface Float64Array {
83
83
/**
84
84
* Determines whether an array includes a certain element, returning true or false as appropriate.
85
85
* @param searchElement The element to search for.
86
- * @param fromIndex The position in this array at which to begin searching for searchElement.
86
+ * @param fromIndex The position in this array at which to begin searching for searchElement.
87
87
*/
88
88
includes ( searchElement : number , fromIndex ?: number ) : boolean ;
89
89
}
0 commit comments