blob: 1cc32855af95e7b0692aa9dca02ac1af376f557d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import { callable } from "@decky/api";
export const runInstallFGMod = callable<
[],
{ status: string; message?: string; output?: string }
>("run_install_fgmod");
export const runUninstallFGMod = callable<
[],
{ status: string; message?: string; output?: string }
>("run_uninstall_fgmod");
export const checkFGModPath = callable<
[],
{ exists: boolean }
>("check_fgmod_path");
export const listInstalledGames = callable<
[],
{ status: string; games: { appid: string; name: string }[] }
>("list_installed_games");
export const logError = callable<[string], void>("log_error");
export const getPathDefaults = callable<
[],
{ home: string; steam_common?: string }
>("get_path_defaults");
|