UNPKG

@agnostack/requestd

Version:

Please contact agnoStack via info@agnostack.com for any questions

11 lines (10 loc) 378 B
import AbstractStorage from './AbstractStorage'; import { StorageConfig } from '../types'; export default class StorageLocal extends AbstractStorage { storage: Storage; constructor(config: StorageConfig); setItem: (key: string, value: string) => void; getItem: (key: string) => string; removeItem: (key: string) => void; static isSupported(): boolean; }