File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15060,7 +15060,7 @@ interface SpeechRecognitionEventMap {
15060
15060
"audioend": Event;
15061
15061
"audiostart": Event;
15062
15062
"end": Event;
15063
- "error": Event ;
15063
+ "error": ErrorEvent ;
15064
15064
"nomatch": SpeechRecognitionEvent;
15065
15065
"result": SpeechRecognitionEvent;
15066
15066
"soundend": Event;
@@ -15079,7 +15079,7 @@ interface SpeechRecognition extends EventTarget {
15079
15079
onaudioend: ((this: SpeechRecognition, ev: Event) => any) | null;
15080
15080
onaudiostart: ((this: SpeechRecognition, ev: Event) => any) | null;
15081
15081
onend: ((this: SpeechRecognition, ev: Event) => any) | null;
15082
- onerror: ((this: SpeechRecognition, ev: Event ) => any) | null;
15082
+ onerror: ((this: SpeechRecognition, ev: ErrorEvent ) => any) | null;
15083
15083
onnomatch: ((this: SpeechRecognition, ev: SpeechRecognitionEvent) => any) | null;
15084
15084
onresult: ((this: SpeechRecognition, ev: SpeechRecognitionEvent) => any) | null;
15085
15085
onsoundend: ((this: SpeechRecognition, ev: Event) => any) | null;
Original file line number Diff line number Diff line change 1050
1050
},
1051
1051
{
1052
1052
"name" : " error" ,
1053
- "type" : " Event "
1053
+ "type" : " ErrorEvent "
1054
1054
},
1055
1055
{
1056
1056
"name" : " end" ,
You can’t perform that action at this time.
0 commit comments