You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
const { contextBridge, ipcRenderer } = require("electron");
|
|
|
|
// 安全地暴露 API 给渲染进程
|
|
contextBridge.exposeInMainWorld("electronAPI", {
|
|
launchLiveTalking: () => ipcRenderer.send("launch-live-talking")
|
|
});
|