UNPKG

ts-ds-tool

Version:

Data structure and algorithm of TypeScript

7 lines (5 loc) 132 B
export interface IEnumerator<T>{ next(): IEnumerator<T>; Current: {done: boolean, value: T}; } export default IEnumerator;