UNPKG

value-index-pair-interface

Version:

TypeScript interface for object that represents a single array item

6 lines (5 loc) 138 B
// Interface for object that represents a single array item. export interface IValueIndexPair { value: any; index: number; // integer }