mastercache
Version:
Multi-tier cache module for Node.js. Redis, Upstash, CloudfareKV, File, in-memory and others drivers
18 lines • 319 B
JavaScript
// src/events/cache/cache-deleted.ts
var CacheDeleted = class {
constructor(key, store) {
this.key = key;
this.store = store;
}
name = "cache:deleted";
toJSON() {
return {
key: this.key,
store: this.store
};
}
};
export {
CacheDeleted
};
//# sourceMappingURL=cache-deleted.js.map