/** * Object that can be compared for equality. */ export interface Equatable { /** * Compares this object to another for equality. */ equals(other: this): boolean; } /** * Compares two nullable objects for equality. */ export declare function isEqual(a: T | null | undefined, b: T | null | undefined): boolean; //# sourceMappingURL=equality.d.ts.map