levelcache/ts/levelcache.classes.levelcache.ts
2020-02-05 17:11:30 +00:00

15 lines
278 B
TypeScript

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() {}
}