UNPKG

@tnwx/commons

Version:

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

16 lines (15 loc) 448 B
import { OutMsg } from './OutMsg'; import { InMsg } from '../in/InMsg'; export declare class OutVideoMsg extends OutMsg { private mediaId; private title; private description; constructor(inMsg: InMsg); toXml(): string; get getMediaId(): string; set setMediaId(mediaId: string); get getTitle(): string; set setTitle(title: string); get getDescription(): string; set setDescription(description: string); }