UNPKG

ts-ds-tool

Version:

Data structure and algorithm of TypeScript

9 lines (8 loc) 155 B
export interface IEnumerator<T> { next(): IEnumerator<T>; Current: { done: boolean; value: T; }; } export default IEnumerator;