UNPKG

@azure/msal-browser

Version:
12 lines 410 B
import { IWindowStorage } from "./IWindowStorage"; export declare class MemoryStorage<T> implements IWindowStorage<T> { private cache; constructor(); getItem(key: string): T | null; setItem(key: string, value: T): void; removeItem(key: string): void; getKeys(): string[]; containsKey(key: string): boolean; clear(): void; } //# sourceMappingURL=MemoryStorage.d.ts.map