//#region src/payments/stripe-limits.d.ts /** * Stripe API limits shared by backend and frontend. * See https://docs.stripe.com/currencies#minimum-and-maximum-charge-amounts. */ /** * Per-currency minimum for one-time PaymentIntents, in the major unit. * Recurring subs have no minimum ($0 subs are allowed). */ declare const STRIPE_ONE_TIME_MIN_AMOUNT_BY_CURRENCY: { readonly USD: 0.5; }; type StripeSupportedCurrency = keyof typeof STRIPE_ONE_TIME_MIN_AMOUNT_BY_CURRENCY; declare function getStripeOneTimeMinAmount(currency: StripeSupportedCurrency): number; //#endregion export { STRIPE_ONE_TIME_MIN_AMOUNT_BY_CURRENCY, StripeSupportedCurrency, getStripeOneTimeMinAmount }; //# sourceMappingURL=stripe-limits.d.ts.map