aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/LocalApi.ts
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-02 09:24:32 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-02 09:24:32 +0200
commitbfe8847d72cd0893230f2e654242658214943e61 (patch)
tree3384b02ebad7a74cbb106ddd95546e0e24ff0bb8 /src/api/LocalApi.ts
parentfix: Fix navigation shortcut accelerator for non-macos (fixes #1172) (#2012) (diff)
downloadferdium-app-bfe8847d72cd0893230f2e654242658214943e61.tar.gz
ferdium-app-bfe8847d72cd0893230f2e654242658214943e61.tar.zst
ferdium-app-bfe8847d72cd0893230f2e654242658214943e61.zip
chore: convert various files from JS to TS (#2010)
Diffstat (limited to 'src/api/LocalApi.ts')
-rw-r--r--src/api/LocalApi.ts26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/api/LocalApi.ts b/src/api/LocalApi.ts
new file mode 100644
index 000000000..0140a5450
--- /dev/null
+++ b/src/api/LocalApi.ts
@@ -0,0 +1,26 @@
1export default class LocalApi {
2 server: any;
3
4 local: any;
5
6 constructor(server: any, local: any) {
7 this.server = server;
8 this.local = local;
9 }
10
11 getAppSettings(type: any) {
12 return this.local.getAppSettings(type);
13 }
14
15 updateAppSettings(type: any, data: any) {
16 return this.local.updateAppSettings(type, data);
17 }
18
19 getAppCacheSize() {
20 return this.local.getAppCacheSize();
21 }
22
23 clearCache() {
24 return this.local.clearCache();
25 }
26}