I am using angular 9 and you mentioned to put -
imports: [ ... SpeechModule, ],
which is fine but it's giving error and reason I think I need to define import at top of file,
I tried
import { SpeechModule } from 'ngx-speech';
getting error
Please specify this import from where this SpeechModule needs to be imported in app.module.ts after installing ngx-speech
I wanna use this to https://www.rajeshkumaryadav.com/#/auth when user will authenticated, it will say you can choose any of pages just say the name, for example you can say 'About' once user will listen this from my existing code, role of your ngx-speech will start, your ngx-speech will take input as 'About' and then I will code for it to set the route for about.
Please answer about import on priority basis.
I am using angular 9 and you mentioned to put -
imports: [ ... SpeechModule, ],which is fine but it's giving error and reason I think I need to define import at top of file,
I tried
import { SpeechModule } from 'ngx-speech';getting error
Please specify this import from where this SpeechModule needs to be imported in app.module.ts after installing ngx-speech
I wanna use this to https://www.rajeshkumaryadav.com/#/auth when user will authenticated, it will say you can choose any of pages just say the name, for example you can say 'About' once user will listen this from my existing code, role of your ngx-speech will start, your ngx-speech will take input as 'About' and then I will code for it to set the route for about.
Please answer about import on priority basis.