airbridge-web-sdk
    Preparing search index...

    Type Alias OpenBannerOptions

    type OpenBannerOptions = {
        title: string;
        description: string;
        buttonText: string;
        destination:
            | BannerWebDestinationOptions
            | BannerDownloadDestinationOptions
            | BannerDeeplinkDestinationOptions;
        color?: string;
        position?: "top"
        | "bottom";
        styles?: Record<string, Partial<CSSStyleDeclaration>>;
    }
    Index

    Properties

    title: string

    The title of the banner.

    description: string

    The description of the banner.

    buttonText: string

    The text for the button in the banner.

    The destination options for the banner (web, download, or deeplink).

    color?: string

    The color of the banner.

    position?: "top" | "bottom"

    The position of the banner (top or bottom).

    styles?: Record<string, Partial<CSSStyleDeclaration>>

    The custom styles for the banner.