Repository URL to install this package:
|
Version:
2.8.0-studio-release ▾
|
import { AddPaymentProps as AddPaymentPlaceholderProps } from 'abstractions/PaymentMethod/AddPayment'
import { PaymentWithBillingAddressProps } from 'src/forms/views/PaymentWithBillingAddress'
import { AnimatedCardState } from 'presets/AnimatedExpandableCard'
export interface PaymentAddHandler {
(state: AnimatedCardState): void
}
export interface AddPaymentProps
extends AddPaymentPlaceholderProps,
PaymentWithBillingAddressProps {
headingLabel?: string
// handler
onPaymentAdd?: PaymentAddHandler
}