Interface Itor<T>

interface Itor<T> {
    next: (() => ItorItem<T>);
}

Type Parameters

  • T

Properties

Properties

next: (() => ItorItem<T>)

Type declaration