UNPKG

ltstrg

Version:

Simpler storage for your test experience!

9 lines (8 loc) 283 B
import { LiteStorage } from './LiteStorage'; export declare class MemoryLiteStorage implements LiteStorage { map: Map<string, string>; getItem(key: string): string | null; setItem(key: string, value: string): void; removeItem(key: string): void; clear(): void; }