/** * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ /** * An object that supports custom deep equality. */ export interface DeepComparable { /** * Deep-compare this object to another. */ [DeepComparable.equals](other: unknown): boolean; } export declare namespace DeepComparable { const equals: unique symbol; } export declare function isDeepEqual(a: unknown, b: unknown, ignoreUndefinedProperties?: boolean): boolean; //# sourceMappingURL=DeepEqual.d.ts.map