/** * Object to compare other objects */ export interface IEqualityComparer { equals(a: T, b: T): boolean; }