@churchapps/apphelper-donations
Version:
Donation components for ChurchApps AppHelper
16 lines • 558 B
TypeScript
import React from "react";
import type { Stripe } from "@stripe/stripe-js";
import { PersonInterface, ChurchInterface } from "@churchapps/helpers";
import { StripePaymentMethod } from "../helpers";
interface Props {
person: PersonInterface;
customerId: string;
paymentMethods: StripePaymentMethod[];
stripePromise: Promise<Stripe>;
donationSuccess: (message: string) => void;
church?: ChurchInterface;
churchLogo?: string;
}
export declare const DonationForm: React.FC<Props>;
export {};
//# sourceMappingURL=DonationForm.d.ts.map