Update underscore.d.ts

missing declaration for wrapped.pick
This commit is contained in:
flashandy
2015-01-17 12:10:10 +01:00
parent 7962de8bd1
commit a4b7732937
+1
View File
@@ -3020,6 +3020,7 @@ interface _Chain<T> {
* @see _.pick
**/
pick(...keys: string[]): _Chain<T>;
pick(keys: string[]): _Chain<T>;
pick(fn: (value: any, key: any, object: any) => any): _Chain<T>;
/**