diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-18 16:24:43 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-18 16:24:43 -0400 |
| commit | 748351384705323a87f7ebc388a3ab858b9ac62f (patch) | |
| tree | 6fe510f40b145d9ddfd0a074b14b5d6d8b60a1d5 /src/api/lsfgApi.ts | |
| parent | 1d296606babfb0ceb02068e852582ade7adc4d98 (diff) | |
| download | decky-lsfg-vk-748351384705323a87f7ebc388a3ab858b9ac62f.tar.gz decky-lsfg-vk-748351384705323a87f7ebc388a3ab858b9ac62f.zip | |
initial env var additions
Diffstat (limited to 'src/api/lsfgApi.ts')
| -rw-r--r-- | src/api/lsfgApi.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/lsfgApi.ts b/src/api/lsfgApi.ts index 5d866ef..5770c43 100644 --- a/src/api/lsfgApi.ts +++ b/src/api/lsfgApi.ts @@ -83,14 +83,14 @@ export const getLaunchOption = callable<[], LaunchOptionResult>("get_launch_opti // Updated config function using centralized configuration export const updateLsfgConfig = callable< - [boolean, string, number, number, boolean, boolean, string, number], + [boolean, string, number, number, boolean, boolean, string, number, boolean, boolean], ConfigUpdateResult >("update_lsfg_config"); // Helper function to create config update from configuration object export const updateLsfgConfigFromObject = async (config: ConfigurationData): Promise<ConfigUpdateResult> => { const args = ConfigurationManager.createArgsFromConfig(config); - return updateLsfgConfig(...args as [boolean, string, number, number, boolean, boolean, string, number]); + return updateLsfgConfig(...args as [boolean, string, number, number, boolean, boolean, string, number, boolean, boolean]); }; // Self-updater API functions |
