UNPKG

microsoft-speech-browser-sdk

Version:
8 lines (7 loc) 297 B
import { IKeyValueStorage } from "../common/Exports"; export declare class SessionStorage implements IKeyValueStorage { Get: (key: string) => string; GetOrAdd: (key: string, valueToAdd: string) => string; Set: (key: string, value: string) => void; Remove: (key: string) => void; }