UNPKG

@tnwx/commons

Version:

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

19 lines (18 loc) 546 B
/** * @author Javen * @copyright javendev@126.com * @description 接收视频消息 */ import { InMsg } from './InMsg'; export declare class InVideoMsg extends InMsg { private mediaId; private thumbMediaId; private msgId; constructor(toUserName: string, fromUserName: string, createTime: number, msgType: string); get getMediaId(): string; set setMediaId(mediaId: string); get getThumbMediaId(): string; set setThumbMediaId(thumbMediaId: string); get getMsgId(): string; set setMsgId(msgId: string); }