muya 2.2.8 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1,8 @@
1
+ /**
2
+ * Performs a shallow comparison between two values to determine if they are equivalent.
3
+ * This function checks if the two values are the same reference, or if they are objects,
4
+ * @param valueA The first value to compare.
5
+ * @param valueB The second value to compare.
6
+ * @returns True if the values are shallowly equal, false otherwise.
7
+ */
1
8
  export declare function shallow<T>(valueA: T, valueB: T): boolean;