Skip to content

Commit 1c10c12

Browse files
committed
Added new function to typings
1 parent 87efc99 commit 1c10c12

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

linq.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ declare namespace Enumerable {
44
createEnumerable<T>(getEnumerator: () => IEnumerator<T>): IEnumerable<T>;
55
createEnumerator<T>(initialize: () => void, tryGetNext: () => boolean, dispose: () => void): IEnumerator<T>;
66
extendTo(type: any): void;
7+
recallFrom(type: any): void;
78
hasNativeIteratorSupport(): boolean;
89
};
910
export function choice<T>(...params: T[]): IEnumerable<T>;

0 commit comments

Comments
 (0)