UNPKG

microsoft-speech-browser-sdk

Version:
8 lines (6 loc) 205 B
export interface IKeyValueStorage { Get(key: string): string; GetOrAdd(key: string, valueToAdd: string): string; Set(key: string, value: string): void; Remove(key: string): void; }