Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. startListening() {
  2. this.speechRecognition.startListening()
  3. .subscribe(
  4. (matches: Array<string>) => {
  5. console.log(matches)
  6. },
  7. (onerror) => {
  8. console.log('error:', onerror)
  9. }
  10. )
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement