UNPKG

@revenuecat/purchases-ui-js

Version:

Web components for Paywalls. Powered by RevenueCat

12 lines (11 loc) 390 B
import type { BaseComponent } from "../base"; import type { Overrides } from "../overrides"; import type { StackProps } from "./stack"; export interface PackageProps extends BaseComponent { type: "package"; package_id: string; is_selected_by_default: boolean; apple_promo_offer_product_code?: string | null; stack: StackProps; overrides?: Overrides<PackageProps>; }