jspreadsheet 8.7.11 → 8.7.12
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 +3 -0
- package/dist/index.js +404 -404
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -23,6 +23,9 @@ declare namespace jspreadsheet {
|
|
|
23
23
|
/** Set extensions to the JSS spreadsheet. Example { formula, parser, render } */
|
|
24
24
|
function setExtensions(extensions: object) : void
|
|
25
25
|
|
|
26
|
+
/** Destroy the spreadsheet. Full destroy will clear all JSS controllers and it is not possible to re-create a new spreadsheet if true is used, until refresh the page. */
|
|
27
|
+
function destroy(element: HTMLElement, fullDestroy?: boolean) : void;
|
|
28
|
+
|
|
26
29
|
/** License string */
|
|
27
30
|
let license: string;
|
|
28
31
|
|