UNPKG

@tnwx/commons

Version:

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

19 lines (18 loc) 522 B
/** * @author Javen * @copyright javendev@126.com * @description 接收图片消息 */ import { InMsg } from './InMsg'; export declare class InImageMsg extends InMsg { private picUrl; private mediaId; private msgId; constructor(toUserName: string, fromUserName: string, createTime: number, msgType: string); get getPicUrl(): string; set setPicUrl(picUrl: string); get getMediaId(): string; set setMediaId(mediaId: string); get getMsgId(): string; set setMsgId(msgId: string); }