image
image copied to clipboard
Format of data returned from tool to backend
I could not find how I can save that file to disk
To disk? You can add/create a function in your code that run an editor save function like below code:
<whatever editor's name you gave>.save()
That is the default function from these editor, and it will save and keep your work or temp data from your editor into your disk. You also can put the function into event listeners like on-click in your save button or something similar.
Hope it helps