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

18 lines (17 loc) 587 B
import React from 'react'; import type { BannerViewProperties } from './ViewProperties'; import type { BluestackPreference } from '../Preference'; export declare class BannerView extends React.Component<BannerViewProperties, { visible: boolean; }> { private _preferenceJSON; private _shouldAutoLoadWhenReady; constructor(props: BannerViewProperties); load(bsPreference?: BluestackPreference): void; private loadWithPreferenceJSON; destroy(): void; toggleRefresh(state?: boolean): void; hide(): void; show(): void; render(): React.ReactNode; }