Files
2026-04-22 12:05:03 +09:00

11 lines
308 B
JavaScript

export const ioHandlers = {
exportJson: () => {
const exportBtn = document.getElementById('export-json');
if (exportBtn) exportBtn.click();
},
importJson: () => {
const importBtn = document.getElementById('import-json');
if (importBtn) importBtn.click();
}
};