mirror of
https://github.com/ivabus/gui
synced 2025-04-24 14:37:11 +03:00
6 lines
224 B
TypeScript
6 lines
224 B
TypeScript
const { ipcRenderer } = window.require("electron");
|
|
|
|
export async function installPackageCommand(full_name: string) {
|
|
const res = await ipcRenderer.invoke("install-package", { full_name });
|
|
console.log("install:", res);
|
|
}
|