From 58a9072ad4c18d911a077f19d974145d122bc685 Mon Sep 17 00:00:00 2001 From: Sebazzz Date: Tue, 18 Nov 2014 22:03:00 +0100 Subject: [PATCH] Implementation of Where --- linq/linq.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linq/linq.d.ts b/linq/linq.d.ts index 12bf13bd4..d3b11e28a 100644 --- a/linq/linq.d.ts +++ b/linq/linq.d.ts @@ -53,7 +53,7 @@ declare module linq { SelectMany(collectionSelector: ($, i: number) => any[], resultSelector?: ($, item) => any): Enumerable; SelectMany(collectionSelector: ($, i: number) => Enumerable, resultSelector?: ($, item) => any): Enumerable; SelectMany(collectionSelector: string, resultSelector?: string): Enumerable; - Where(predicate: ($, i: number) => boolean): Enumerable; + Where(predicate: ($ : T, i: number) => boolean): Enumerable; Where(predicate: string): Enumerable; OfType(type: Function): Enumerable; Zip(second: any[], selector: (v1, v2, i: number) => any): Enumerable;