UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

9 lines (8 loc) 250 B
export declare class KeyValueStorage { private storage; private prefix; constructor(storage: Storage, prefix: string); get<T = any>(key: string): T | undefined; set(key: string, value: any): void; remove(key: string): void; }