UNPKG

indexed-collection

Version:

A zero-dependency library of classes that make filtering, sorting and observing changes to arrays easier and more efficient.

8 lines (5 loc) 132 B
export interface IReadonlyCollection<T> { exists(item: T): boolean; readonly items: readonly T[]; readonly count: number; }