6 lines
124 B
TypeScript
6 lines
124 B
TypeScript
|
|
import { ipcMain } from 'electron';
|
||
|
|
|
||
|
|
ipcMain.handle('getPlatform', () => {
|
||
|
|
return `hi, i'm from ${process.platform}`;
|
||
|
|
});
|