fix(core): update

This commit is contained in:
2021-04-23 18:41:30 +00:00
parent d18f4b6928
commit 17b59fd222
14 changed files with 79 additions and 46 deletions

View File

@@ -1,9 +1,9 @@
import { CacheEntry } from "./levelcache.classes.cacheentry";
import { CacheEntry } from './levelcache.classes.cacheentry';
export abstract class AbstractCache {
public abstract ready: Promise<void>;
public abstract status: 'active' | 'inactive';
// Blobs
/**
* store a Blob
@@ -22,4 +22,4 @@ export abstract class AbstractCache {
* cleans the cache
*/
public abstract clean(): Promise<void>;
}
}