UNPKG

mastercache

Version:

Multi-tier cache module for Node.js. Redis, Upstash, CloudfareKV, File, in-memory and others drivers

16 lines 273 B
// src/events/cache/cache-cleared.ts var CacheCleared = class { constructor(store) { this.store = store; } name = "cache:cleared"; toJSON() { return { store: this.store }; } }; export { CacheCleared }; //# sourceMappingURL=cache-cleared.js.map