jspreadsheet 10.5.1 → 10.5.3

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 CHANGED
@@ -1178,6 +1178,8 @@ declare namespace jspreadsheet {
1178
1178
  * @return {array|string|null} array or string
1179
1179
  */
1180
1180
  getData: (highlighted?: boolean, processed?: boolean, delimiter?: string, asJson?: boolean) => Array<Array<any>> | Array<Record<string, any>> | string | null;
1181
+ /** Get the worksheet data from a range */
1182
+ getDataFromRange: (range: string, processed?: boolean) => Array<Array<any>> | Array<Record<string, any>> | string | null;
1181
1183
  /** Get the defined name or all defined names when key is null */
1182
1184
  getDefinedNames: (key?: string) => object;
1183
1185
  /** Internal method: Get the editor for one cell */