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
* @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.
1269
1264
*/
1270
-
filter(predicate: BooleanConverter,thisArg?: any): (Textendsfalse|0|""|null|undefined|0n ? never : T)[];
1265
+
filter(predicate: BooleanConstructor,thisArg?: any): (Textendsfalse|0|""|null|undefined|0n ? never : T)[];
1271
1266
/**
1272
1267
* Returns the elements of an array that meet the condition specified in a callback function.
1273
1268
* @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.
@@ -1464,7 +1459,7 @@ interface Array<T> {
1464
1459
* @param predicate Must be exactly "Boolean"
1465
1460
* @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.
1466
1461
*/
1467
-
filter(predicate: BooleanConverter,thisArg?: any): (Textendsfalse|0|""|null|undefined|0n ? never : T)[];
1462
+
filter(predicate: BooleanConstructor,thisArg?: any): (Textendsfalse|0|""|null|undefined|0n ? never : T)[];
1468
1463
/**
1469
1464
* Returns the elements of an array that meet the condition specified in a callback function.
1470
1465
* @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.
0 commit comments