UNPKG

@spotify/web-api-ts-sdk

Version:
6 lines (5 loc) 144 B
export interface ICacheStore { get(key: string): string | null; set(key: string, value: string): void; remove(key: string): void; }