import { CloudStorageService } from "./cloudstorageService"; export class CloudStorage { constructor(private cloudstorageService: CloudStorageService, public Keys: Map) { } setItem(key: string, value: string) { return this.cloudstorageService.setItem(key, value) } getItem(key: string) { return this.cloudstorageService.getItem(key) } }