lodash: Add clone(Deep)WithCustomizer parameters (#15191)

This commit is contained in:
Michael Hill
2017-03-24 10:58:12 -05:00
committed by Andy
parent bfb809e107
commit e3f7de87ec

4
lodash/index.d.ts vendored
View File

@@ -11253,7 +11253,7 @@ declare namespace _ {
}
//_.cloneDeepWith
type CloneDeepWithCustomizer<TValue, TResult> = (value: TValue) => TResult;
type CloneDeepWithCustomizer<TValue, TResult> = (value: TValue, key?: number|string, object?: any, stack?: any) => TResult;
interface LoDashStatic {
/**
@@ -11374,7 +11374,7 @@ declare namespace _ {
}
//_.cloneWith
type CloneWithCustomizer<TValue, TResult> = (value: TValue) => TResult;
type CloneWithCustomizer<TValue, TResult> = (value: TValue, key?: number|string, object?: any, stack?: any) => TResult;
interface LoDashStatic {
/**