UNPKG

@beincom/dto

Version:

Share dto for all projects of Beincom

15 lines (14 loc) 520 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SharedNotificationCacheKey = void 0; const constants_1 = require("@beincom/constants"); /** * @deprecated Move to @beincom/constants@5.18.1 */ class SharedNotificationCacheKey { static getUserOnlineKey() { return [SharedNotificationCacheKey.PREFIX, constants_1.CACHE_KEYS.USER_ONLINE].join(':'); } } SharedNotificationCacheKey.PREFIX = 'notification'; exports.SharedNotificationCacheKey = SharedNotificationCacheKey;