8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
|
|
import { contextBridge, ipcRenderer } from 'electron';
|
||
|
|
|
||
|
|
contextBridge.exposeInMainWorld('$api', {
|
||
|
|
getPlatform: async () => {
|
||
|
|
return await ipcRenderer.invoke('getPlatform');
|
||
|
|
},
|
||
|
|
});
|