@tnwx/commons
Version:
TTNWX 微信系开发脚手架之公共模块
13 lines (12 loc) • 478 B
TypeScript
/**
* @author Javen
* @copyright javendev@126.com
* @description 接收语音识别结果,与 InVoiceMsg 唯一的不同是多了一个 Recognition 标记
*/
import { InVoiceMsg } from './InVoiceMsg';
export declare class InSpeechRecognitionResults extends InVoiceMsg {
private recognition;
constructor(toUserName: string, fromUserName: string, createTime: number, msgType: string);
get getRecognition(): string;
set setRecognition(recognition: string);
}