Expose _.filter() in chained object wrapper

This commit is contained in:
Eric Lu
2015-02-10 10:51:53 -08:00
parent 35fffaa44b
commit 137a5b8e4a
+9
View File
@@ -2641,6 +2641,15 @@ declare module _ {
whereValue: W): LoDashArrayWrapper<T>;
}
interface LoDashObjectWrapper<T> {
/**
* @see _.filter
**/
filter<T extends {}>(
callback: ObjectIterator<T, boolean>,
thisArg?: any): LoDashObjectWrapper<T>;
}
//_.find
interface LoDashStatic {
/**