aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/LocalApi.ts
blob: 1830369c7cf45ba6fd345b1ea5ab4ed3d1744c62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export default class LocalApi {
  server: any;

  local: any;

  constructor(server: any, local: any) {
    this.server = server;
    this.local = local;
  }

  getAppSettings(type: string) {
    return this.local.getAppSettings(type);
  }

  updateAppSettings(type: string, data: any) {
    return this.local.updateAppSettings(type, data);
  }

  getAppCacheSize() {
    return this.local.getAppCacheSize();
  }

  clearCache() {
    return this.local.clearCache();
  }
}