UNPKG

@melchyore/adonis-cache

Version:
19 lines (18 loc) 556 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const CacheEvents_1 = __importDefault(require("../Enums/CacheEvents")); class CacheKeyForgotten { constructor(key) { this.key = key; this.EVENT = CacheEvents_1.default.KeyForgotten; } toJSON() { return { key: this.key }; } } exports.default = CacheKeyForgotten;