UNPKG

@plandalf/react

Version:

React checkout components for Plandalf Checkout — an embedded and popup checkout alternative to Stripe Checkout and SamCart, with a built-in billing portal.

14 lines (13 loc) 559 B
import React from 'react'; import { FullScreenEmbedProps, CheckoutItem } from '../types'; import { EventCallbacks } from '../hooks/useIframeMessage'; export type LegacyFullScreenEmbedProps = { show: boolean; onClose: () => void; items: CheckoutItem[]; domain?: string; offer: string; } & EventCallbacks; export declare const OfferFullScreenEmbed: React.FC<FullScreenEmbedProps>; export declare const NumiFullScreenEmbed: React.FC<FullScreenEmbedProps>; export declare const LegacyNumiFullScreenEmbed: React.FC<LegacyFullScreenEmbedProps>;