export interface IEnumerator { next(): IEnumerator; Current: { done: boolean; value: T; }; } export default IEnumerator;