mirror of
https://github.com/sotam0316/drawNET.git
synced 2026-04-25 12:08:36 +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();
|
|
}
|
|
};
|