opendash
Version:
open.DASH data visualization framework
11 lines (10 loc) • 372 B
TypeScript
import { StorageService, AppInterface } from "..";
export declare class StorageAdapterContext {
private service;
private storage;
constructor(storage: Map<string, string>, service: StorageService, app: AppInterface);
setLoading(value: boolean): void;
set(key: string, value: string): void;
delete(key: string): void;
clear(): void;
}