UNPKG

cv-dialog-sdk

Version:

Catavolt Dialog Javascript API

11 lines (10 loc) 259 B
/** * NOTE: Had to write this class because we are back-level and cannot make use of modern iterators. */ export declare class ValueIterator<T> { private _array; private _nextIndex; constructor(array: T[]); done(): boolean; next(): T; }