[feat] disable symlink settings non Windows OS

This commit is contained in:
silentrald
2024-12-11 22:57:13 +08:00
parent 65fb281a64
commit c4e742c201
7 changed files with 138 additions and 103 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import { webUtils } from "electron";
declare global {
interface Window {
electron: {
platform: "win32"|"linux"|"darwin",
platform: "win32" | "linux",
ipcRenderer: {
sendMessage(channel: string, args: any): void;
on(channel: string, func: (...args: any) => void): (() => void) | undefined;