@voice-ping/cognitive-services-speech
Version:
VoicePing Cognitive Services Speech SDK for JavaScript forked from Microsoft
21 lines (20 loc) • 528 B
TypeScript
import { IStringDictionary } from "./IDictionary";
export declare enum EventType {
Debug = 0,
Info = 1,
Warning = 2,
Error = 3
}
export declare class PlatformEvent {
private privName;
private privEventId;
private privEventTime;
private privEventType;
private privMetadata;
constructor(eventName: string, eventType: EventType);
get name(): string;
get eventId(): string;
get eventTime(): string;
get eventType(): EventType;
get metadata(): IStringDictionary<string>;
}