mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-29 05:41:03 +00:00
8 lines
320 B
TypeScript
8 lines
320 B
TypeScript
import { registerEvent } from "../register-event";
|
|
import { CommonRedistManager } from "@main/services/common-redist-manager";
|
|
|
|
const canInstallCommonRedist = async (_event: Electron.IpcMainInvokeEvent) =>
|
|
CommonRedistManager.canInstallCommonRedist();
|
|
|
|
registerEvent("canInstallCommonRedist", canInstallCommonRedist);
|