project-client/src/preload/index.ts

8 lines
280 B
TypeScript
Raw Normal View History

2023-04-03 23:35:37 +00:00
import { contextBridge, ipcRenderer } from "electron";
2023-04-03 22:41:52 +00:00
import { GET_PRELOAD_FILE } from "../shared/IpcEvents";
2023-04-03 23:35:37 +00:00
import { VencordDesktop } from "./VencordDesktop";
contextBridge.exposeInMainWorld("VencordDesktop", VencordDesktop);
2023-03-30 23:21:06 +00:00
2023-04-03 22:41:52 +00:00
require(ipcRenderer.sendSync(GET_PRELOAD_FILE));