UNPKG

@versatiledatakit/shared

Version:

Versatile Data Kit Shared library enables reusability of shared features like: NgRx Redux, Error Handlers, Utils, Generic Components, etc.

10 lines (9 loc) 244 B
/** * ** 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; }