@beincom/constants
Version:
Beincom shared constant definitions
15 lines (14 loc) • 615 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SharedNotificationCacheKey = void 0;
var cache_keys_1 = require("../cache-keys");
var SharedNotificationCacheKey = /** @class */ (function () {
function SharedNotificationCacheKey() {
}
SharedNotificationCacheKey.getUserOnlineKey = function () {
return [SharedNotificationCacheKey.PREFIX, cache_keys_1.CACHE_KEYS.USER_ONLINE].join(':');
};
SharedNotificationCacheKey.PREFIX = 'notification';
return SharedNotificationCacheKey;
}());
exports.SharedNotificationCacheKey = SharedNotificationCacheKey;