Repository URL to install this package:
|
Version:
2.1.16 ▾
|
import { AddPaymentProps as AddPaymentPlaceholderProps } from 'abstractions/PaymentMethod/AddPayment';
import { PaymentWithBillingAddressProps } from '@skava/ui/dist/forms/views/PaymentWithBillingAddress';
import { AnimatedCardState } from 'presets/AnimatedExpandableCard';
export interface PaymentAddHandler {
(state: AnimatedCardState): void;
}
export interface AddPaymentProps extends AddPaymentPlaceholderProps, PaymentWithBillingAddressProps {
headingLabel?: string;
onPaymentAdd?: PaymentAddHandler;
}