From 28291d17b6542db12453ac51903f62ae2d0ec3e5 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Wed, 20 Nov 2013 13:40:34 +0000 Subject: [PATCH] Added missing semicolon. --- lodash/lodash.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index aa303a0436..2141842af3 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -494,7 +494,7 @@ declare module _ { * @param shallow If true then only flatten one level, optional, default = false. * @return `array` flattened. **/ - flatten(array: List, isShallow?: boolean): T[] + flatten(array: List, isShallow?: boolean): T[]; flatten( array: List,