revert fix for generated files

This commit is contained in:
Rostislav Galimsky 2016-09-15 08:29:55 +03:00
parent 7c8a6cea9c
commit 62f7c8a23d
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ interface Array<T> {
* @param thisArg If provided, it will be used as the this value for each invocation of
* predicate. If it is not provided, undefined is used instead.
*/
findIndex(predicate: (value: T, index: number, obj: Array<T>) => boolean, thisArg?: any): number;
findIndex(predicate: (value: T) => boolean, thisArg?: any): number;
/**
* Returns the this object after filling the section identified by start and end with value

2
lib/lib.es6.d.ts vendored
View File

@ -4143,7 +4143,7 @@ interface Array<T> {
* @param thisArg If provided, it will be used as the this value for each invocation of
* predicate. If it is not provided, undefined is used instead.
*/
findIndex(predicate: (value: T, index: number, obj: Array<T>) => boolean, thisArg?: any): number;
findIndex(predicate: (value: T) => boolean, thisArg?: any): number;
/**
* Returns the this object after filling the section identified by start and end with value