UNPKG

@tnwx/commons

Version:

TTNWX 微信系开发脚手架之公共模块

20 lines 684 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const EventInMsg_1 = require("./EventInMsg"); class InFollowEvent extends EventInMsg_1.EventInMsg { constructor(toUserName, fromUserName, createTime, event) { super(toUserName, fromUserName, createTime, event); } get getEventKey() { return this.eventKey; } set setEventKey(eventKey) { this.eventKey = eventKey; } } exports.InFollowEvent = InFollowEvent; // 订阅:subscribe InFollowEvent.EVENT_INFOLLOW_SUBSCRIBE = 'subscribe'; // 取消订阅:unsubscribe InFollowEvent.EVENT_INFOLLOW_UNSUBSCRIBE = 'unsubscribe'; //# sourceMappingURL=InFollowEvent.js.map