import { List } from "./List"; import { Dictionary } from "./Dictionary"; /** * Enumerator. Used to loop through a Dictionary or List * @class Enumerator * @template T */ export declare class Enumerator | List> { Struct: T; Position: number; /** * Current Value * @type {*} * @memberof Enumerator */ Current: any; constructor(dict: T); /** * Move counter next * @returns {boolean} Is there a value in Current */ MoveNext(): boolean; } //# sourceMappingURL=Enumerator.d.ts.map