/**
 * ** Interface for Equality of two Object.
 */
export interface Equals<T extends Record<any, any>> {
    /**
     * ** Make equality comparison between two objects of same type, current and provided.
     */
    equals(obj: T): boolean;
}
