From 88a10c0a4832274f446cb45e7e99ef0b9406af2a Mon Sep 17 00:00:00 2001 From: rjamesnw Date: Tue, 16 Jul 2013 00:49:40 -0400 Subject: [PATCH] Enumerable was missing from the jQuery static space. --- linq/linq.jquery.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/linq/linq.jquery.d.ts b/linq/linq.jquery.d.ts index 456da22680..c813bf0edb 100755 --- a/linq/linq.jquery.d.ts +++ b/linq/linq.jquery.d.ts @@ -14,3 +14,7 @@ declare module linqjs { interface JQuery { toEnumerable(): linqjs.Enumerable; } + +interface JQueryStatic { + Enumerable: linqjs.EnumerableStatic; +}