UNPKG

@azerion/bluestack-sdk-react-native

Version:

BlueStack provides functionalities for monetizing your mobile application: from premium sales with rich media, video and innovative formats, it facilitates inserting native mobile ads as well all standard display formats. BlueStack SDK is a library that a

15 lines (13 loc) 420 B
import type { BannerAdType } from './AdType'; import type { BluestackPreference } from '../Preference'; export type BannerViewProperties = { type: BannerAdType; shouldLoadWhenReady: boolean; placementId: string; preference?: BluestackPreference; onAdLoaded?: Function; onAdFailedToLoad?: Function; onAdRefreshed?: Function; onAdFailedToRefresh?: Function; onAdClicked?: Function; };