2020-11-12 19:14:43 +02:00

6 lines
104 B
TypeScript

export interface Cacheable {
restoreFromCache(): Promise<any>;
storeToCache(): Promise<any>;
}