Preferences WIP

This commit is contained in:
nicwands
2026-03-11 13:05:28 -04:00
parent a1b339f668
commit 99e6761e92
16 changed files with 150 additions and 57 deletions

View File

@@ -19,6 +19,9 @@ const api = {
onNoteDeleted: (callback) => {
ipcRenderer.on('note-deleted', (_, data) => callback(data))
},
onPluginChanged: (callback) => {
ipcRenderer.on('plugin-changed', (_, data) => callback(data))
},
notifyNoteChanged: (event, data) => {
ipcRenderer.send('note-changed', event, data)
},