/*! Memorio Copyright (c) 2019 Dario Passariello Licensed under MIT License, see https://dario.passariello.ca */ interface _cache { /** * Create a cache, please use state instead! * * @example * cache.myCache = any */ [key: string]: any } declare var cache: _cache type cache = _cache