MCPcopy Create free account
hub / github.com/ScaleML/AgentSPEX / triggerDownload

Function triggerDownload

yaml-flow-editor/src/utils/image.ts:189–194  ·  view source on GitHub ↗

* Trigger file download

(dataUrl: string, fileName: string)

Source from the content-addressed store, hash-verified

187 * Trigger file download
188 */
189function triggerDownload(dataUrl: string, fileName: string) {
190 const a = document.createElement('a');
191 a.setAttribute('download', fileName);
192 a.setAttribute('href', dataUrl);
193 a.click();
194}
195
196/**
197 * Export flow diagram as image

Callers 1

downloadImageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected