jspreadsheet 10.0.23 → 10.0.24
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.
- package/dist/index.d.ts +2 -2
- package/dist/index.js +659 -658
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1502,8 +1502,8 @@ declare namespace jspreadsheet {
|
|
|
1502
1502
|
width?: number;
|
|
1503
1503
|
/** Viewport current width */
|
|
1504
1504
|
height?: number;
|
|
1505
|
-
/** Get the row object */
|
|
1506
|
-
getRow: (row
|
|
1505
|
+
/** Get the row object or get the rows configuration when pass null. */
|
|
1506
|
+
getRow: (row?: number) => RowInstance;
|
|
1507
1507
|
/** Internal worksheet onload method */
|
|
1508
1508
|
onload?: () => void;
|
|
1509
1509
|
/** Internal nested headers DOM container */
|