UNPKG

@netcreaties/ngx-smart-banner

Version:

Angular service for the imlementation of a smart banner to notify your users about your available app.

34 lines (33 loc) 806 B
import { ViewContainerRef } from '@angular/core'; export interface NgxSmartBannerSettings { title?: string; author?: string; price?: string; priceSuffix?: { ios?: string; android?: string; }; rating?: { ios?: number; android?: number; }; icon?: { ios?: string; android?: string; }; buttonLabel?: string; buttonUrl?: { ios?: string; android?: string; }; closeLabel?: string; enabledPlatforms?: Array<NgxSmartBannerPlatform>; viewContainerRef: ViewContainerRef | null; daysHidden?: number | null; daysReminder?: number | null; hideRating?: boolean; } export declare enum NgxSmartBannerPlatform { Android = "android", IOS = "ios" }