UNPKG

@alirezazeynali/round-robin

Version:
10 lines (9 loc) 248 B
export declare class Selector<T = any> { protected array: T[]; private readonly length; protected _currentIndex: number; constructor(array: T[]); set currentIndex(index: number); get currentIndex(): number; next(): T; }