UNPKG

@skbkontur/db-viewer-ui

Version:

Database Viewer with custom configuration

13 lines 414 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FileUtils = void 0; class FileUtils { static downloadFile(file) { const link = document.createElement("a"); link.download = file.name; link.href = `data:application/octet-stream;base64,${file.content}`; link.click(); } } exports.FileUtils = FileUtils; //# sourceMappingURL=FileUtils.js.map