Finalize Typescript restructure

This commit is contained in:
Darko Gjorgjijoski
2026-04-06 17:59:15 +02:00
parent cab785172e
commit 74b4b2df4e
209 changed files with 12419 additions and 1745 deletions

View File

@@ -28,7 +28,7 @@ export interface NumberPlaceholdersParams {
}
export interface NumberPlaceholder {
description: string
name: string
value: string
}
@@ -102,7 +102,7 @@ export const settingService = {
},
// App Version
async getAppVersion(): Promise<{ version: string }> {
async getAppVersion(): Promise<{ version: string; channel: string }> {
const { data } = await client.get(API.APP_VERSION)
return data
},