This is example code for a plugin to an Ionic/Capacitor/Angular project:
import { ForegroundService } from '@awesome-cordova-plugins/foreground-service/ngx';
constructor(public foregroundService: ForegroundService) { }
...
startService() {
// Notification importance is optional, the default is 1 - Low (no sound or vibration)
this.foregroundService.start ('GPS Running', 'Background Service', 'drawable/fsicon');
}
stopService() {
// Disable the foreground service
this.foregroundService.stop();
}
I'm not familiar with Angular, and there's no plain JavaScript (not Typescript) example. How would this code look in plain JavaScript?