From the docomuntation of ngx-Spinner said in FEAUTERS: "show()/hide() methods return promise", but in my Project in intellij:
this.spinner.show() returns void.
ane therefore when im trying to do this:
onCheckOut() {
this.spinner.show().then(p => {
this.cartService.CheckoutFromCart(1);
});
}
im getting the : ERROR in src/app/components/checkout/checkout.component.ts:33:25 - error TS2339: Property 'then' does not exist on type 'void'.
33 this.spinner.show().then(p => {
how i make it work?
Maybe the documentation is wrong. When I look at the code, it does not return a promise:
Not sure if this was done on purpose or not, but you could raise an issue on Github.
The only way to achieve your solution would be to use the
getSpinner
method of the service: