14 lines
627 B
JavaScript
14 lines
627 B
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const UserHasNotification_1 = __importDefault(require("../Customer/UserHasNotification"));
|
|
var UserHasNotification;
|
|
(function (UserHasNotification) {
|
|
class IUserHasNotification extends UserHasNotification_1.default.IUserHasNotification {
|
|
}
|
|
UserHasNotification.IUserHasNotification = IUserHasNotification;
|
|
})(UserHasNotification || (UserHasNotification = {}));
|
|
exports.default = UserHasNotification;
|