9 lines
167 B
JavaScript
9 lines
167 B
JavaScript
var SpeechRecognitionEvent = function() {
|
|
this.resultIndex;
|
|
this.results;
|
|
this.interpretation;
|
|
this.emma;
|
|
};
|
|
|
|
module.exports = SpeechRecognitionEvent;
|