From 9392f83f5949756c92859ade6e9c8e70f188b629 Mon Sep 17 00:00:00 2001 From: davetayls Date: Mon, 26 Jan 2015 10:15:43 +0000 Subject: [PATCH] use dictionary for reduce object list --- underscore/underscore.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/underscore/underscore.d.ts b/underscore/underscore.d.ts index a6d48b759..aeaf253ca 100644 --- a/underscore/underscore.d.ts +++ b/underscore/underscore.d.ts @@ -180,7 +180,7 @@ interface UnderscoreStatic { context?: any): TResult; reduce( - list: _.Collection, + list: _.Dictionary, iterator: _.ObjectIterator, memo?: TResult, context?: any): TResult;