33interface Array < T > { // @type -options no-redefine
44 /**
55 * Removes the items that return true
6- * @param callbackFn A function that accepts up to three arguments. The filterReject method calls the
6+ * @param callbackFn - A function that accepts up to three arguments. The filterReject method calls the
77 * callbackFn function one time for each element in the array.
8- * @param thisArg If provided, it will be used as this value for each invocation of
8+ * @param thisArg - If provided, it will be used as this value for each invocation of
99 * predicate. If it is not provided, undefined is used instead.
1010 */
1111 filterReject ( callbackFn : ( value : T , index : number , target : T [ ] ) => boolean , thisArg ?: any ) : T [ ] ;
@@ -14,9 +14,9 @@ interface Array<T> { // @type-options no-redefine
1414interface ReadonlyArray < T > { // @type -options no-export
1515 /**
1616 * Removes the items that return true
17- * @param callbackFn A function that accepts up to three arguments. The filterReject method calls the
17+ * @param callbackFn - A function that accepts up to three arguments. The filterReject method calls the
1818 * callbackFn function one time for each element in the array.
19- * @param thisArg If provided, it will be used as this value for each invocation of
19+ * @param thisArg - If provided, it will be used as this value for each invocation of
2020 * predicate. If it is not provided, undefined is used instead.
2121 */
2222 filterReject ( callbackFn : ( value : T , index : number , target : T [ ] ) => boolean , thisArg ?: any ) : T [ ] ;
@@ -25,9 +25,9 @@ interface ReadonlyArray<T> { // @type-options no-export
2525interface Int8Array { // @type -options no-export
2626 /**
2727 * Removes the items that return true
28- * @param callbackFn A function that accepts up to three arguments. The filterReject method calls the
28+ * @param callbackFn - A function that accepts up to three arguments. The filterReject method calls the
2929 * callbackFn function one time for each element in the array.
30- * @param thisArg If provided, it will be used as this value for each invocation of
30+ * @param thisArg - If provided, it will be used as this value for each invocation of
3131 * predicate. If it is not provided, undefined is used instead.
3232 */
3333 filterReject ( callbackFn : ( value : number , index : number , target : Int8Array ) => boolean , thisArg ?: any ) : Int8Array ;
@@ -36,9 +36,9 @@ interface Int8Array { // @type-options no-export
3636interface Uint8Array { // @type -options no-export
3737 /**
3838 * Removes the items that return true
39- * @param callbackFn A function that accepts up to three arguments. The filterReject method calls the
39+ * @param callbackFn - A function that accepts up to three arguments. The filterReject method calls the
4040 * callbackFn function one time for each element in the array.
41- * @param thisArg If provided, it will be used as this value for each invocation of
41+ * @param thisArg - If provided, it will be used as this value for each invocation of
4242 * predicate. If it is not provided, undefined is used instead.
4343 */
4444 filterReject ( callbackFn : ( value : number , index : number , target : Uint8Array ) => boolean , thisArg ?: any ) : Uint8Array ;
@@ -47,9 +47,9 @@ interface Uint8Array { // @type-options no-export
4747interface Uint8ClampedArray { // @type -options no-export
4848 /**
4949 * Removes the items that return true
50- * @param callbackFn A function that accepts up to three arguments. The filterReject method calls the
50+ * @param callbackFn - A function that accepts up to three arguments. The filterReject method calls the
5151 * callbackFn function one time for each element in the array.
52- * @param thisArg If provided, it will be used as this value for each invocation of
52+ * @param thisArg - If provided, it will be used as this value for each invocation of
5353 * predicate. If it is not provided, undefined is used instead.
5454 */
5555 filterReject ( callbackFn : ( value : number , index : number , target : Uint8ClampedArray ) => boolean , thisArg ?: any ) : Uint8ClampedArray ;
@@ -58,9 +58,9 @@ interface Uint8ClampedArray { // @type-options no-export
5858interface Int16Array { // @type -options no-export
5959 /**
6060 * Removes the items that return true
61- * @param callbackFn A function that accepts up to three arguments. The filterReject method calls the
61+ * @param callbackFn - A function that accepts up to three arguments. The filterReject method calls the
6262 * callbackFn function one time for each element in the array.
63- * @param thisArg If provided, it will be used as this value for each invocation of
63+ * @param thisArg - If provided, it will be used as this value for each invocation of
6464 * predicate. If it is not provided, undefined is used instead.
6565 */
6666 filterReject ( callbackFn : ( value : number , index : number , target : Int16Array ) => boolean , thisArg ?: any ) : Int16Array ;
@@ -69,9 +69,9 @@ interface Int16Array { // @type-options no-export
6969interface Uint16Array { // @type -options no-export
7070 /**
7171 * Removes the items that return true
72- * @param callbackFn A function that accepts up to three arguments. The filterReject method calls the
72+ * @param callbackFn - A function that accepts up to three arguments. The filterReject method calls the
7373 * callbackFn function one time for each element in the array.
74- * @param thisArg If provided, it will be used as this value for each invocation of
74+ * @param thisArg - If provided, it will be used as this value for each invocation of
7575 * predicate. If it is not provided, undefined is used instead.
7676 */
7777 filterReject ( callbackFn : ( value : number , index : number , target : Uint16Array ) => boolean , thisArg ?: any ) : Uint16Array ;
@@ -80,9 +80,9 @@ interface Uint16Array { // @type-options no-export
8080interface Int32Array { // @type -options no-export
8181 /**
8282 * Removes the items that return true
83- * @param callbackFn A function that accepts up to three arguments. The filterReject method calls the
83+ * @param callbackFn - A function that accepts up to three arguments. The filterReject method calls the
8484 * callbackFn function one time for each element in the array.
85- * @param thisArg If provided, it will be used as this value for each invocation of
85+ * @param thisArg - If provided, it will be used as this value for each invocation of
8686 * predicate. If it is not provided, undefined is used instead.
8787 */
8888 filterReject ( callbackFn : ( value : number , index : number , target : Int32Array ) => boolean , thisArg ?: any ) : Int32Array ;
@@ -91,9 +91,9 @@ interface Int32Array { // @type-options no-export
9191interface Uint32Array { // @type -options no-export
9292 /**
9393 * Removes the items that return true
94- * @param callbackFn A function that accepts up to three arguments. The filterReject method calls the
94+ * @param callbackFn - A function that accepts up to three arguments. The filterReject method calls the
9595 * callbackFn function one time for each element in the array.
96- * @param thisArg If provided, it will be used as this value for each invocation of
96+ * @param thisArg - If provided, it will be used as this value for each invocation of
9797 * predicate. If it is not provided, undefined is used instead.
9898 */
9999 filterReject ( callbackFn : ( value : number , index : number , target : Uint32Array ) => boolean , thisArg ?: any ) : Uint32Array ;
@@ -102,9 +102,9 @@ interface Uint32Array { // @type-options no-export
102102interface Float32Array { // @type -options no-export
103103 /**
104104 * Removes the items that return true
105- * @param callbackFn A function that accepts up to three arguments. The filterReject method calls the
105+ * @param callbackFn - A function that accepts up to three arguments. The filterReject method calls the
106106 * callbackFn function one time for each element in the array.
107- * @param thisArg If provided, it will be used as this value for each invocation of
107+ * @param thisArg - If provided, it will be used as this value for each invocation of
108108 * predicate. If it is not provided, undefined is used instead.
109109 */
110110 filterReject ( callbackFn : ( value : number , index : number , target : Float32Array ) => boolean , thisArg ?: any ) : Float32Array ;
@@ -113,9 +113,9 @@ interface Float32Array { // @type-options no-export
113113interface Float64Array { // @type -options no-export
114114 /**
115115 * Removes the items that return true
116- * @param callbackFn A function that accepts up to three arguments. The filterReject method calls the
116+ * @param callbackFn - A function that accepts up to three arguments. The filterReject method calls the
117117 * callbackFn function one time for each element in the array.
118- * @param thisArg If provided, it will be used as this value for each invocation of
118+ * @param thisArg - If provided, it will be used as this value for each invocation of
119119 * predicate. If it is not provided, undefined is used instead.
120120 */
121121 filterReject ( callbackFn : ( value : number , index : number , target : Float64Array ) => boolean , thisArg ?: any ) : Float64Array ;
@@ -124,9 +124,9 @@ interface Float64Array { // @type-options no-export
124124interface BigInt64Array { // @type -options no-export
125125 /**
126126 * Removes the items that return true
127- * @param callbackFn A function that accepts up to three arguments. The filterReject method calls the
127+ * @param callbackFn - A function that accepts up to three arguments. The filterReject method calls the
128128 * callbackFn function one time for each element in the array.
129- * @param thisArg If provided, it will be used as this value for each invocation of
129+ * @param thisArg - If provided, it will be used as this value for each invocation of
130130 * predicate. If it is not provided, undefined is used instead.
131131 */
132132 filterReject ( callbackFn : ( value : bigint , index : number , target : BigInt64Array ) => boolean , thisArg ?: any ) : BigInt64Array ;
@@ -135,9 +135,9 @@ interface BigInt64Array { // @type-options no-export
135135interface BigUint64Array { // @type -options no-export
136136 /**
137137 * Removes the items that return true
138- * @param callbackFn A function that accepts up to three arguments. The filterReject method calls the
138+ * @param callbackFn - A function that accepts up to three arguments. The filterReject method calls the
139139 * callbackFn function one time for each element in the array.
140- * @param thisArg If provided, it will be used as this value for each invocation of
140+ * @param thisArg - If provided, it will be used as this value for each invocation of
141141 * predicate. If it is not provided, undefined is used instead.
142142 */
143143 filterReject ( callbackFn : ( value : bigint , index : number , target : BigUint64Array ) => boolean , thisArg ?: any ) : BigUint64Array ;
0 commit comments