From ed7436e785c923326c6083ee763224c02ef963f4 Mon Sep 17 00:00:00 2001 From: gscshoyru Date: Tue, 28 Jan 2014 13:52:46 -0500 Subject: [PATCH] Add support for non-dictionary objects in isEmpty in lodash.d.ts --- lodash/lodash.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index 97aeab757..dc2dd7206 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -3300,6 +3300,11 @@ declare module _ { * @see _.isEmpty **/ isEmpty(value: string): boolean; + + /** + * @see _.isEmpty + **/ + isEmpty(value: any): boolean; } //_.isEqual