export interface ManaPlusApp { readonly startCommand: string; getGameDir(): string; getVersion(): Promise; isInstalled(): boolean; updateAvailable(): Promise<{ isNewVersion: boolean; newestVersion: string }>; update(): Promise; }