@fileverse-dev/dsheet 0.0.52-patch-3 → 0.0.53

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,9 +1,9 @@
1
1
  import { Sheet } from '@fileverse-dev/fortune-core';
2
2
 
3
3
  /**
4
- * Compare two spreadsheets' cell data and check if anything changed
4
+ * Compare two spreadsheets' cell data and images, checking if anything changed
5
5
  * @param {Array} oldSheets - Original sheets data
6
6
  * @param {Array} newSheets - New sheets data
7
- * @returns {boolean} - true if any cell data changed, false if identical
7
+ * @returns {boolean} - true if any cell data or images changed, false if identical
8
8
  */
9
9
  export declare function isSpreadsheetChanged(oldSheets: Sheet[], newSheets: Sheet[]): boolean;