Skip to content

Commit

Permalink
Added new function to typings
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaifm committed Sep 3, 2020
1 parent 87efc99 commit 1c10c12
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions linq.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ declare namespace Enumerable {
createEnumerable<T>(getEnumerator: () => IEnumerator<T>): IEnumerable<T>;
createEnumerator<T>(initialize: () => void, tryGetNext: () => boolean, dispose: () => void): IEnumerator<T>;
extendTo(type: any): void;
recallFrom(type: any): void;
hasNativeIteratorSupport(): boolean;
};
export function choice<T>(...params: T[]): IEnumerable<T>;
Expand Down

0 comments on commit 1c10c12

Please sign in to comment.