aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/LocalApi.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/LocalApi.ts')
-rw-r--r--src/api/LocalApi.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/LocalApi.ts b/src/api/LocalApi.ts
index 0140a5450..1830369c7 100644
--- a/src/api/LocalApi.ts
+++ b/src/api/LocalApi.ts
@@ -8,11 +8,11 @@ export default class LocalApi {
8 this.local = local; 8 this.local = local;
9 } 9 }
10 10
11 getAppSettings(type: any) { 11 getAppSettings(type: string) {
12 return this.local.getAppSettings(type); 12 return this.local.getAppSettings(type);
13 } 13 }
14 14
15 updateAppSettings(type: any, data: any) { 15 updateAppSettings(type: string, data: any) {
16 return this.local.updateAppSettings(type, data); 16 return this.local.updateAppSettings(type, data);
17 } 17 }
18 18