Required subset of localStorage API by localStorageWrapper.

interface StringStorage {
    getItem(key: string): null | string;
    setItem(key: string, data: string): void;
}

Methods