import { BackgroundUpload } from '@awesome-cordova-plugins/background-upload/ngx';
constructor(private backgroundUpload: BackgroundUpload) { }
...
this.backgroundUpload.init({})
.then((res: any) => console.log(res))
.catch((error: any) => console.error(error));