diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2025-10-21 12:06:57 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-21 12:06:57 -0400 |
| commit | 4f7557a84be323392e00f51194e7b70b35512277 (patch) | |
| tree | 12ff6e936470801b18f2ab39836b941be794cb05 /src/api/lsfgApi.ts | |
| parent | bd2fdea07cde9aaac77047aa4a7d406c39e5a56e (diff) | |
| parent | ec37b86c5d4a6371804e71e7863df6a71c756db3 (diff) | |
| download | decky-lsfg-vk-4f7557a84be323392e00f51194e7b70b35512277.tar.gz decky-lsfg-vk-4f7557a84be323392e00f51194e7b70b35512277.zip | |
Merge pull request #189 from xXJSONDeruloXx/store-cleanup-2
Store cleanup 2
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"); |
