Added tests for ix.d.ts

- added tests of all functions defined in ix.d.ts Enumerable
- minor fix in ix.d.ts
This commit is contained in:
Igor Oleinikov
2013-10-26 16:24:49 +04:00
parent af0f9c4bf5
commit 2b99487a28
2 changed files with 71 additions and 1 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ declare module Ix {
finally(finallyAction: () => void): Enumerable<T>;
finallyDo(finallyAction: () => void): Enumerable<T>;
onErrorResumeNext<T>(second: Enumerable<T>): Enumerable<T>;
onErrorResumeNext(second: Enumerable<T>): Enumerable<T>;
retry(retryCount?: number): Enumerable<T>;
}