返回 AiToEarn
electron-updater.d.ts
根目录 / project / aitoearn-electron / src / type / electron-updater.d.ts
1 interface VersionInfo {
2 update: boolean;
3 version: string;
4 newVersion?: string;
5 }
6
7 interface ErrorType {
8 message: string;
9 error: Error;
10 }
11
11 lines TYPESCRIPT