1
+ declare global {
2
+ interface Window {
3
+ SpeechRecognition : SpeechRecognition
4
+ }
5
+ interface SpeechGrammar {
6
+ src : string
7
+ weight : number
8
+ }
9
+
10
+ const SpeechGrammar : {
11
+ prototype : SpeechGrammar
12
+ new ( ) : SpeechGrammar
13
+ }
14
+
15
+ interface SpeechGrammarList {
16
+ readonly length : number
17
+ addFromString ( string : string , weight ?: number ) : void
18
+ addFromURI ( src : string , weight ?: number ) : void
19
+ item ( index : number ) : SpeechGrammar
20
+ [ index : number ] : SpeechGrammar
21
+ }
22
+
23
+ const SpeechGrammarList : {
24
+ prototype : SpeechGrammarList
25
+ new ( ) : SpeechGrammarList
26
+ }
27
+
28
+ interface SpeechRecognitionEventMap {
29
+ audioend : Event
30
+ audiostart : Event
31
+ end : Event
32
+ error : SpeechRecognitionError
33
+ nomatch : SpeechRecognitionEvent
34
+ result : SpeechRecognitionEvent
35
+ soundend : Event
36
+ soundstart : Event
37
+ speechend : Event
38
+ speechstart : Event
39
+ start : Event
40
+ }
41
+
42
+ interface SpeechRecognition {
43
+ continuous : boolean
44
+ grammars : SpeechGrammarList
45
+ interimResults : boolean
46
+ lang : string
47
+ maxAlternatives : number
48
+ onaudioend : ( ( this : SpeechRecognition , ev : Event ) => any ) | null
49
+ onaudiostart : ( ( this : SpeechRecognition , ev : Event ) => any ) | null
50
+ onend : ( ( this : SpeechRecognition , ev : Event ) => any ) | null
51
+ onerror :
52
+ | ( ( this : SpeechRecognition , ev : SpeechRecognitionError ) => any )
53
+ | null
54
+ onnomatch :
55
+ | ( ( this : SpeechRecognition , ev : SpeechRecognitionEvent ) => any )
56
+ | null
57
+ onresult :
58
+ | ( ( this : SpeechRecognition , ev : SpeechRecognitionEvent ) => any )
59
+ | null
60
+ onsoundend : ( ( this : SpeechRecognition , ev : Event ) => any ) | null
61
+ onsoundstart : ( ( this : SpeechRecognition , ev : Event ) => any ) | null
62
+ onspeechend : ( ( this : SpeechRecognition , ev : Event ) => any ) | null
63
+ onspeechstart : ( ( this : SpeechRecognition , ev : Event ) => any ) | null
64
+ onstart : ( ( this : SpeechRecognition , ev : Event ) => any ) | null
65
+ serviceURI : string
66
+ abort ( ) : void
67
+ start ( ) : void
68
+ stop ( ) : void
69
+ addEventListener < K extends keyof SpeechRecognitionEventMap > (
70
+ type : K ,
71
+ listener : (
72
+ this : SpeechRecognition ,
73
+ ev : SpeechRecognitionEventMap [ K ]
74
+ ) => any ,
75
+ options ?: boolean | AddEventListenerOptions
76
+ ) : void
77
+ addEventListener (
78
+ type : string ,
79
+ listener : EventListenerOrEventListenerObject ,
80
+ options ?: boolean | AddEventListenerOptions
81
+ ) : void
82
+ removeEventListener < K extends keyof SpeechRecognitionEventMap > (
83
+ type : K ,
84
+ listener : (
85
+ this : SpeechRecognition ,
86
+ ev : SpeechRecognitionEventMap [ K ]
87
+ ) => any ,
88
+ options ?: boolean | EventListenerOptions
89
+ ) : void
90
+ removeEventListener (
91
+ type : string ,
92
+ listener : EventListenerOrEventListenerObject ,
93
+ options ?: boolean | EventListenerOptions
94
+ ) : void
95
+ }
96
+
97
+ const SpeechRecognition : {
98
+ prototype : SpeechRecognition
99
+ new ( ) : SpeechRecognition
100
+ }
101
+
102
+ interface SpeechRecognitionError extends Event {
103
+ // readonly error: SpeechRecognitionErrorCode;
104
+ readonly message : string
105
+ }
106
+
107
+ const SpeechRecognitionError : {
108
+ prototype : SpeechRecognitionError
109
+ new ( ) : SpeechRecognitionError
110
+ }
111
+
112
+ interface SpeechRecognitionEvent extends Event {
113
+ readonly emma : Document | null
114
+ readonly interpretation : any
115
+ readonly resultIndex : number
116
+ readonly results : SpeechRecognitionResultList
117
+ }
118
+
119
+ const SpeechRecognitionEvent : {
120
+ prototype : SpeechRecognitionEvent
121
+ new ( ) : SpeechRecognitionEvent
122
+ }
123
+ }
124
+
125
+ let speechRecognition : SpeechRecognition
126
+
127
+ if ( window . SpeechRecognition ) {
128
+ speechRecognition = new SpeechRecognition ( )
129
+ } else {
130
+ speechRecognition = new webkitSpeechRecognition ( )
131
+ }
132
+
133
+ export { speechRecognition }
0 commit comments