UNPKG

@chargebee/atomicpricing

Version:

JS wrapper for your Atomic Pricing hosted page

18 lines (17 loc) 1.12 kB
declare const Pricify: { init: () => any; setVisitor: (visitor: import("./types").Visitor, options?: import("./pricify/events/defn").EventOptions | undefined) => void; setQuantity: (quantity: number, options?: import("./pricify/events/defn").EventOptions | undefined) => void; setBillingAddress: (billingAddress: import("./types").Address, options?: import("./pricify/events/defn").EventOptions | undefined) => void; setShippingAddress: (shippingAddress: import("./types").Address, options?: import("./pricify/events/defn").EventOptions | undefined) => void; setBusinessEntity: (id: string, options?: import("./pricify/events/defn").EventOptions | undefined) => void; setPriceVariant: (id: string, options?: import("./pricify/events/defn").EventOptions | undefined) => void; openPricingPage: () => any; setSubscriptionAttributes: (subscriptionAttributes: import("./types").SubscriptionAttributes, options?: import("./pricify/events/defn").EventOptions | undefined) => void; }; declare global { interface Window { Pricify: typeof Pricify; } } export default Pricify;