diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-10-20 12:50:03 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-10-20 12:50:03 -0400 |
| commit | c3f510a2944cf8436c8bccedcb77db9bd6a7f2c3 (patch) | |
| tree | a603425e25da40307b49397d20ba5bed19d7955a /src/api/lsfgApi.ts | |
| parent | bd2fdea07cde9aaac77047aa4a7d406c39e5a56e (diff) | |
| download | decky-lsfg-vk-c3f510a2944cf8436c8bccedcb77db9bd6a7f2c3.tar.gz decky-lsfg-vk-c3f510a2944cf8436c8bccedcb77db9bd6a7f2c3.zip | |
chore: remove unused elements previously commented out, for store release prep
Diffstat (limited to 'src/api/lsfgApi.ts')
| -rw-r--r-- | src/api/lsfgApi.ts | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/api/lsfgApi.ts b/src/api/lsfgApi.ts index dda6c23..82f37c8 100644 --- a/src/api/lsfgApi.ts +++ b/src/api/lsfgApi.ts @@ -59,23 +59,6 @@ export interface ConfigSchemaResult { current_profile?: string; } -export interface UpdateCheckResult { - success: boolean; - update_available: boolean; - current_version: string; - latest_version: string; - release_notes: string; - release_date: string; - download_url: string; - error?: string; -} - -export interface UpdateDownloadResult { - success: boolean; - download_path?: string; - error?: string; -} - export interface LaunchOptionResult { launch_option: string; instructions: string; @@ -178,9 +161,6 @@ export const updateLsfgConfigFromObject = async (config: ConfigurationData): Pro }; // Self-updater API functions -export const checkForPluginUpdate = callable<[], UpdateCheckResult>("check_for_plugin_update"); -export const downloadPluginUpdate = callable<[string], UpdateDownloadResult>("download_plugin_update"); - // Profile management API functions export const getProfiles = callable<[], ProfilesResult>("get_profiles"); export const createProfile = callable<[string, string?], ProfileResult>("create_profile"); |
