Skip to content

Commit 62f7c8a

Browse files
committed
revert fix for generated files
1 parent 7c8a6ce commit 62f7c8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/lib.es2015.core.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ interface Array<T> {
3737
* @param thisArg If provided, it will be used as the this value for each invocation of
3838
* predicate. If it is not provided, undefined is used instead.
3939
*/
40-
findIndex(predicate: (value: T, index: number, obj: Array<T>) => boolean, thisArg?: any): number;
40+
findIndex(predicate: (value: T) => boolean, thisArg?: any): number;
4141

4242
/**
4343
* Returns the this object after filling the section identified by start and end with value

lib/lib.es6.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4143,7 +4143,7 @@ interface Array<T> {
41434143
* @param thisArg If provided, it will be used as the this value for each invocation of
41444144
* predicate. If it is not provided, undefined is used instead.
41454145
*/
4146-
findIndex(predicate: (value: T, index: number, obj: Array<T>) => boolean, thisArg?: any): number;
4146+
findIndex(predicate: (value: T) => boolean, thisArg?: any): number;
41474147

41484148
/**
41494149
* Returns the this object after filling the section identified by start and end with value

0 commit comments

Comments
 (0)