Merge pull request #6705 from STARSCrazy/linq-thenby-fix

Fix "ThenBy" and "ThenByDescending" in linq.d.ts
This commit is contained in:
Masahiro Wakame
2015-11-16 21:26:24 +09:00

4
linq/linq.d.ts vendored
View File

@@ -205,9 +205,9 @@ declare module linq {
}
interface OrderedEnumerable<T> extends Enumerable<T> {
ThenBy(keySelector: ($) => T): OrderedEnumerable<T>;
ThenBy(keySelector: ($: T) => any): OrderedEnumerable<T>;
ThenBy(keySelector: string): OrderedEnumerable<T>;
ThenByDescending(keySelector: ($) => T): OrderedEnumerable<T>;
ThenByDescending(keySelector: ($: T) => any): OrderedEnumerable<T>;
ThenByDescending(keySelector: string): OrderedEnumerable<T>;
}