返回 AiToEarn
app.ts
1 /*
2 * @Author: nevin
3 * @Date: 2025-01-23 15:48:14
4 * @LastEditTime: 2025-02-14 22:36:25
5 * @LastEditors: nevin
6 * @Description:
7 */
8
9 /**
10 * 获取应用信息
11 */
12 export async function ipcAppInfo() {
13 const res: {
14 version: string;
15 chromiumPath: string;
16 platform: string;
17 } = await window.ipcRenderer.invoke('ICP_APP_GET_INFO');
18 return res;
19 }
20
20 lines TYPESCRIPT