UNPKG

@ux-aspects/ux-aspects

Version:

Open source user interface framework for building modern, responsive, mobile big data applications

8 lines (7 loc) 265 B
export declare abstract class StorageAdapter { abstract getItem(key: string): string; abstract setItem(key: string, value: string): void; abstract removeItem(key: string): void; abstract clear(): void; abstract getSupported(): StorageAdapter; }