export default abstract class Cache { public abstract async fetch(key: string): Promise; public abstract async put(key: string, value: any): Promise; public abstract async has(key: string): Promise; public abstract async drop(key: string): Promise; }