Merge pull request #12627 from Cody157/patch-2

Update castArray definition.
This commit is contained in:
Andy
2016-11-14 10:55:44 -08:00
committed by GitHub
+1 -1
View File
@@ -10986,7 +10986,7 @@ declare module _ {
* @param value The value to inspect.
* @return Returns the cast array.
*/
castArray<T>(value: T): T[];
castArray<T>(value?: T | T[]): T[];
}
interface LoDashImplicitWrapper<T> {