import Storage from './storage'; import { StorageOptions } from './types'; class JsonStorage extends Storage { constructor(options: StorageOptions) { super(options); return (this.constructor)._matchingInstance(this); } protected hasStore() { return true; } static get type() { return 'jsonstorage'; } } export default JsonStorage;