// Interface for object that represents a single array item.

export interface IValueIndexPair {
	value: any;
	index: number; // integer
}