UNPKG

166 BTypeScriptView Raw
1export interface IWebStorage {
2 getItem: (key: string) => string;
3 setItem: (key: string, value: string) => void;
4 removeItem: (key: string) => void;
5}