igniteui-react-core
Version:
Ignite UI React Core.
18 lines (17 loc) • 459 B
TypeScript
import { Base, IEnumerator$1, Type } from "./type";
import { ArrayBox$1 } from "./array";
/**
* @hidden
*/
export declare class ReverseArrayEnumerator$1<T> extends Base implements IEnumerator$1<T> {
static $t: Type;
protected $t: Type;
private b;
private a;
constructor($t: Type, a: ArrayBox$1<any>);
get current(): T;
get currentObject(): any;
moveNext(): boolean;
reset(): void;
dispose(): void;
}