@tnwx/commons
Version:
TTNWX 微信系开发脚手架之公共模块
16 lines (15 loc) • 441 B
TypeScript
/**
* @author Javen
* @copyright javendev@126.com
* @description 转发多客服消息 或者 转发到指定客服
*/
import { OutMsg } from './OutMsg';
import { TransInfo } from './TransInfo';
import { InMsg } from '../in/InMsg';
export declare class OutCustomMsg extends OutMsg {
private transInfo;
constructor(inMsg: InMsg);
toXml(): string;
getTransInfo(): TransInfo;
setTransInfo(transInfo: TransInfo): void;
}