File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1132,27 +1132,27 @@ export namespace FirebaseAdMobTypes {
1132
1132
/**
1133
1133
* When an ad has finished loading.
1134
1134
*/
1135
- onAdLoaded : ( ) => void ;
1135
+ onAdLoaded ? : ( ) => void ;
1136
1136
1137
1137
/**
1138
1138
* When an ad has failed to load. Callback contains an Error.
1139
1139
*/
1140
- onAdFailedToLoad : ( error : Error ) => void ;
1140
+ onAdFailedToLoad ? : ( error : Error ) => void ;
1141
1141
1142
1142
/**
1143
1143
* The ad is now visible to the user.
1144
1144
*/
1145
- onAdOpened : ( ) => void ;
1145
+ onAdOpened ? : ( ) => void ;
1146
1146
1147
1147
/**
1148
1148
* Called when the user is about to return to the app after tapping on an ad.
1149
1149
*/
1150
- onAdClosed : ( ) => void ;
1150
+ onAdClosed ? : ( ) => void ;
1151
1151
1152
1152
/**
1153
1153
* Called when the user has left the application (e.g. clicking an advert).
1154
1154
*/
1155
- onAdLeftApplication : ( ) => void ;
1155
+ onAdLeftApplication ? : ( ) => void ;
1156
1156
}
1157
1157
1158
1158
/**
You can’t perform that action at this time.
0 commit comments