fix(app): open in powershell (#15112)

This commit is contained in:
Filip
2026-02-26 09:39:55 +01:00
committed by GitHub
parent 799b2623cb
commit 6b021658ad
4 changed files with 53 additions and 6 deletions

View File

@@ -18,6 +18,7 @@ export const commands = {
checkAppExists: (appName: string) => __TAURI_INVOKE<boolean>("check_app_exists", { appName }),
wslPath: (path: string, mode: "windows" | "linux" | null) => __TAURI_INVOKE<string>("wsl_path", { path, mode }),
resolveAppPath: (appName: string) => __TAURI_INVOKE<string | null>("resolve_app_path", { appName }),
openInPowershell: (path: string) => __TAURI_INVOKE<null>("open_in_powershell", { path }),
};
/** Events */