microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
11 lines (10 loc) • 425 B
TypeScript
import { AgentConfig } from "../common.speech/Exports.js";
import { EventType, PlatformEvent } from "./PlatformEvent.js";
export declare class DialogEvent extends PlatformEvent {
constructor(eventName: string, eventType?: EventType);
}
export declare class SendingAgentContextMessageEvent extends DialogEvent {
private privAgentConfig;
constructor(agentConfig: AgentConfig);
get agentConfig(): AgentConfig;
}