UNPKG
gdevelop-cordova-admob-plus
Version:
latest (0.45.0)
0.45.0
0.44.0
0.43.0
0.42.0
Trustable Google AdMob Cordova Plugin
admob-plus.github.io
admob-plus/admob-plus
gdevelop-cordova-admob-plus
/
www
/
state.d.ts
14 lines
(13 loc)
•
294 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
declare
type
AdId
=
number
;
declare
class
AdMobState
{
applicationId
:
undefined
|
string
;
devMode
:
boolean
;
platform
:
string
;
nextId
:
AdId
;
adUnits
: { [
key
:
string
]:
AdId
; };
constructor
(
);
getAdId
(
adUnitId
:
string
):
number
; }
export
default
AdMobState
;