UNPKG

@daystram/ratify-client

Version:
9 lines (8 loc) 275 B
import { ITokenStorage } from "./ITokenStorage"; export declare class MemoryStorage implements ITokenStorage { private tokens; constructor(); getItem(key: string): string | null; setItem(key: string, value: string): void; removeItem(key: string): void; }