Posted 23 December 2022, 2:05 am EST
- Updated 23 December 2022, 2:48 am EST
Thank you very much for your really fast answer!
OK I took a look into it.
Nice – but unfortunately not exactly what I hoped to find and need - or i´ve overseen it. 
Your demo shows how to load and save files.
But I (we developer) need also two functions like the shown above.
Means a export function that returns the spreadsheet as “sjs” (assuming its binary data).
Like
const sjsBinaryData: *typedArray* = this.activeSheet.getSjs();
( Where typedArray is meant as a Javascript “typed array”;
please see
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays )
And a import function that consumes SJS (binary) data.
Like
this.activeSheet.fromSJS(sjsBinaryData);
These export and import functions are needed to store the value of the here used variable “sjsBinaryData” in a database and to read it from the database and assign it to the spreadsheet.
Any plans for that?