arm64 support

This commit is contained in:
Natsumi
2025-09-02 22:30:46 +12:00
parent d4bf9ef0f6
commit f1c8c0fa65
9 changed files with 174 additions and 146 deletions

View File

@@ -30,6 +30,7 @@ declare global {
) => Promise<any>;
};
electron: {
getArch: () => Promise<string>;
openFileDialog: () => Promise<string>;
openDirectoryDialog: () => Promise<string>;
desktopNotification: (
@@ -63,7 +64,7 @@ declare global {
overlayHand: int
) => Promise<void>;
ipcRenderer: {
on(channel: String, func: (...args: unknown[]) => void)
on(channel: String, func: (...args: unknown[]) => void);
};
};
__APP_GLOBALS__: AppGlobals;