UNPKG

@tnwx/commons

Version:

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

10 lines (9 loc) 271 B
import { OutMsg } from './OutMsg'; import { InMsg } from '../in/InMsg'; export declare class OutTextMsg extends OutMsg { private content; constructor(inMsg: InMsg); toXml(): string; get getContent(): string; setContent(content: string): OutTextMsg; }