UNPKG
@brandonknudsen/admob-native-advanced
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.6
1.0.5
1.0.4
1.0.3
Capacitor plugin for Google AdMob Native Advanced Ads
@brandonknudsen/admob-native-advanced
/
dist
/
index.js
7 lines
(6 loc)
•
259 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
{ registerPlugin }
from
'@capacitor/core'
;
const
AdMobNativeAdvanced
=
registerPlugin
(
'AdMobNativeAdvanced'
, {
web
:
() =>
import
(
'./web'
).
then
(
m
=>
new
m.
AdMobNativeAdvancedWeb
()), });
export
*
from
'./definitions'
;
export
{
AdMobNativeAdvanced
};