jspreadsheet 8.0.58 → 8.0.62
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 -0
- package/dist/index.js +431 -544
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -751,6 +751,8 @@ declare namespace jspreadsheet {
|
|
|
751
751
|
getProcessed: (x: number, y: number, extended: boolean) => void;
|
|
752
752
|
/** Get the properties for one column or cell */
|
|
753
753
|
getProperties: (x: number, y: number) => void;
|
|
754
|
+
/** Get the selection in a range format */
|
|
755
|
+
getRange: () => string;
|
|
754
756
|
/** Get a row data or meta information by Id. */
|
|
755
757
|
getRowById: (row: number, element: boolean) => Object;
|
|
756
758
|
/** Get the data from one row */
|