UNPKG

@namiml/web-sdk

Version:

Nami Web SDK makes subscriptions & in-app purchases easy, with powerful built-in paywalls and A/B testing

17 lines (16 loc) 468 B
import { NamiCampaign } from "./externals/campaign"; export interface FormFactor { form_factor: string; supports_portrait: boolean; supports_landscape: boolean; } export type AvailableCampaignsResponseHandler = (campaigns: NamiCampaign[]) => void; export declare enum CampaignRuleType { DEFAULT = "default", LABEL = "label", URL = "url" } export declare enum CampaignRuleConversionEventType { DEEPLINK = "deeplink", IN_APP = "in_app" }