declare module "./iterator" { interface LazyIterator { /** * Creates an array from the values in this lazy iterator. */ toArray(): T[]; } }