Merge pull request #5330 from pimterry/lodash-where-T

Remove unnecessary extra generic parameter in Lodash's _().where
This commit is contained in:
Masahiro Wakame
2015-08-15 16:28:32 +09:00
+1 -1
View File
@@ -5153,7 +5153,7 @@ declare module _ {
/**
* @see _.where
**/
where<T, U extends {}>(properties: U): LoDashArrayWrapper<T>;
where<U extends {}>(properties: U): LoDashArrayWrapper<T>;
}
/********