docs(admob): fix package name (#1301)

remove the dash "import { AdMob, AdMobOptions, AdSize, AdExtras } from '@ionic-native/ad-mob';" to import { AdMob, AdMobOptions, AdSize, AdExtras } from '@ionic-native/admob' because typescript will not import the specified clases
This commit is contained in:
mugenyi henry 2017-03-30 22:50:02 +03:00 committed by Ibby Hadeed
parent 390f474ad5
commit f4c4317f16

View File

@ -95,7 +95,7 @@ export interface AdExtras {
* Plugin for Google Ads, including AdMob / DFP (doubleclick for publisher) and mediations to other Ad networks. * Plugin for Google Ads, including AdMob / DFP (doubleclick for publisher) and mediations to other Ad networks.
* @usage * @usage
* ```typescript * ```typescript
* import { AdMob, AdMobOptions, AdSize, AdExtras } from '@ionic-native/ad-mob'; * import { AdMob, AdMobOptions, AdSize, AdExtras } from '@ionic-native/admob';
* *
* constructor(private admob: AdMob){} * constructor(private admob: AdMob){}
* *