When I am trying to import Admob like this:
import { AdMob } from "@ionic-native/admob-plus";
I am getting this because of the constructor parameter:
'AdMob' refers to a value, but is being used as a type here.ts(2749)
Should I just use typeof before the constructor parameter?
Also, when I am trying to add “AdMob” to the providers in app.module, I am getting:
Type 'AdMobOriginal' is not assignable to type 'Provider'.
Type 'AdMobOriginal' is missing the following properties from type 'any[]': length, pop, push, concat, and 26 more.