UNPKG

@churchapps/apphelper-donations

Version:

Donation components for ChurchApps AppHelper

17 lines 581 B
import React from "react"; import type { Stripe } from "@stripe/stripe-js"; import { StripePaymentMethod } from "../helpers"; import { PersonInterface, ChurchInterface } from "@churchapps/helpers"; interface Props { person: PersonInterface; customerId: string; paymentMethods: StripePaymentMethod[]; stripePromise: Promise<Stripe>; donationSuccess: (message: string) => void; church?: ChurchInterface; churchLogo?: string; currency?: string; } export declare const DonationForm: React.FC<Props>; export {}; //# sourceMappingURL=DonationForm.d.ts.map