UNPKG

@tnwx/commons

Version:

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

16 lines (15 loc) 437 B
/** * @author Javen * @copyright javendev@126.com * @description 接收文本消息 */ import { InMsg } from './InMsg'; export declare class InTextMsg extends InMsg { private content; private msgId; constructor(toUserName: string, fromUserName: string, createTime: number, msgType: string); get getContent(): string; set setContent(content: string); get getMsgId(): string; set setMsgId(msgId: string); }