Skip to content

Commit

Permalink
feat(ionic): expose AdMob.configure()
Browse files Browse the repository at this point in the history
  • Loading branch information
ratson committed Jul 10, 2021
1 parent c0fcb14 commit bae5ee5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/ionic/src/ngx/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,10 @@ export class AdMob
return this.admob.start()
}

public configure(...opts: Parameters<IAdMob[NativeActions.configure]>) {
return this.admob.configure(...opts)
}

public setAppMuted(...opts: Parameters<IAdMob[NativeActions.setAppMuted]>) {
return this.admob.setAppMuted(...opts)
}
Expand Down

0 comments on commit bae5ee5

Please sign in to comment.