@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.
12 lines (11 loc) • 452 B
TypeScript
import React from 'react';
import { StandardEmbedProps } from '../types';
export type StandardCheckoutArgs = {
items: any[];
offer: string;
redirectUrl: string;
domain?: string;
};
export declare const NumiStandardCheckout: ({ items, domain, offer, redirectUrl }: StandardCheckoutArgs) => void;
export declare const OfferStandardEmbed: React.FC<StandardEmbedProps>;
export declare const NumiStandardEmbed: React.FC<StandardEmbedProps>;