@@ -4455,7 +4455,7 @@ interface DocumentEvent {
4455
4455
createEvent(eventInterface: "SVGZoomEvents"): SVGZoomEvent;
4456
4456
createEvent(eventInterface: "SecurityPolicyViolationEvent"): SecurityPolicyViolationEvent;
4457
4457
createEvent(eventInterface: "ServiceWorkerMessageEvent"): ServiceWorkerMessageEvent;
4458
- createEvent(eventInterface: "SpeechRecognitionErrorEvent "): SpeechRecognitionErrorEvent ;
4458
+ createEvent(eventInterface: "SpeechRecognitionError "): SpeechRecognitionError ;
4459
4459
createEvent(eventInterface: "SpeechRecognitionEvent"): SpeechRecognitionEvent;
4460
4460
createEvent(eventInterface: "SpeechSynthesisErrorEvent"): SpeechSynthesisErrorEvent;
4461
4461
createEvent(eventInterface: "SpeechSynthesisEvent"): SpeechSynthesisEvent;
@@ -13691,7 +13691,7 @@ interface SpeechRecognitionEventMap {
13691
13691
"audioend": Event;
13692
13692
"audiostart": Event;
13693
13693
"end": Event;
13694
- "error": SpeechRecognitionErrorEvent ;
13694
+ "error": SpeechRecognitionError ;
13695
13695
"nomatch": SpeechRecognitionEvent;
13696
13696
"result": SpeechRecognitionEvent;
13697
13697
"soundend": Event;
@@ -13710,7 +13710,7 @@ interface SpeechRecognition extends EventTarget {
13710
13710
onaudioend: ((this: SpeechRecognition, ev: Event) => any) | null;
13711
13711
onaudiostart: ((this: SpeechRecognition, ev: Event) => any) | null;
13712
13712
onend: ((this: SpeechRecognition, ev: Event) => any) | null;
13713
- onerror: ((this: SpeechRecognition, ev: SpeechRecognitionErrorEvent ) => any) | null;
13713
+ onerror: ((this: SpeechRecognition, ev: SpeechRecognitionError ) => any) | null;
13714
13714
onnomatch: ((this: SpeechRecognition, ev: SpeechRecognitionEvent) => any) | null;
13715
13715
onresult: ((this: SpeechRecognition, ev: SpeechRecognitionEvent) => any) | null;
13716
13716
onsoundend: ((this: SpeechRecognition, ev: Event) => any) | null;
0 commit comments