Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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;
}