import StorageServiceInterface from "./StorageServiceInterface"; export default class StorageService implements StorageServiceInterface { get(key: string): any; set(key: string, value: any): void; remove(key: any): void; }