import * as plugins from './levelcache.plugins'; /** * a leveled cache for storing things for a short time */ export class LevelCache { public cacheMap = new plugins.lik.Stringmap(); public async storeBlob () {} public async retrieveBlob () {} public clean() {} }