UNPKG

@tnwx/wxcp

Version:

TNWX 微信系开发脚手架之极速开发企业微信/企业号

23 lines 865 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const QyBaseMsg_1 = require("./QyBaseMsg"); const QySendMsgApi_1 = require("../QySendMsgApi"); /** * @author Javen * @copyright javendev@126.com * @description markdown 消息 */ class QyMarkDownMsg extends QyBaseMsg_1.QyBaseMsg { constructor(markdown, agentId, toUser, toParty, toTag, safe = 0, enableIdTrans = 0, enableDuplicateCheck = 0, duplicateCheckInterval = 1800) { super(QySendMsgApi_1.QySendMessageType.MARKDOWN, agentId, toUser, toParty, toTag, safe, enableIdTrans, enableDuplicateCheck, duplicateCheckInterval); this.markdown = markdown; } get markDown() { return this.markdown; } set markDown(markdown) { this.markdown = markdown; } } exports.QyMarkDownMsg = QyMarkDownMsg; //# sourceMappingURL=QyMarkDownMsg.js.map