mirror of
https://github.com/sotam0316/drawNET_test.git
synced 2026-04-25 03:58:38 +09:00
11 lines
308 B
JavaScript
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();
|
|
}
|
|
};
|