I\'m working on an Electron app with Angular 4. I want to play sound on some specific action. Is there any module or code for that? It can be in the angular 4 o
Electron app
updated: I had the same problem and used ViewChild reference with ElementRef to solve this.
app.component.ts
@ViewChild('audioOption') audioPlayerRef: ElementRef; onAudioPlay(){ this.audioPlayerRef.nativeElement.play(); }
app.component.html