This commit is contained in:
Samiul Haque Sohan 2022-03-24 19:44:11 +03:00
parent 3764010d38
commit 90294d0664
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ import Store from 'electron-store'
const store = new Store()
ipcMain.handle(
'electron-store',
async (_evnet, methodSign: string, ...args: any[]) => {
async (_event, methodSign: string, ...args: any[]) => {
if (typeof (store as any)[methodSign] === 'function') {
return (store as any)[methodSign](...args)
}