We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87efc99 commit 1c10c12Copy full SHA for 1c10c12
linq.d.ts
@@ -4,6 +4,7 @@ declare namespace Enumerable {
4
createEnumerable<T>(getEnumerator: () => IEnumerator<T>): IEnumerable<T>;
5
createEnumerator<T>(initialize: () => void, tryGetNext: () => boolean, dispose: () => void): IEnumerator<T>;
6
extendTo(type: any): void;
7
+ recallFrom(type: any): void;
8
hasNativeIteratorSupport(): boolean;
9
};
10
export function choice<T>(...params: T[]): IEnumerable<T>;
0 commit comments