UNPKG

@tnwx/commons

Version:

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

22 lines (21 loc) 605 B
/** * @author Javen * @copyright javendev@126.com * @description 接收链接消息 */ import { InMsg } from './InMsg'; export declare class InLinkMsg extends InMsg { private title; private description; private url; private msgId; constructor(toUserName: string, fromUserName: string, createTime: number, msgType: string); get getTitle(): string; set setTitle(title: string); get getDescription(): string; set setDescription(description: string); get getUrl(): string; set setUrl(url: string); get getMsgId(): string; set setMsgId(msgId: string); }